Skip to content

Instantly share code, notes, and snippets.

View moinuddin14's full-sized avatar
🎯
Focusing

Khaja Moinuddin Mohammed moinuddin14

🎯
Focusing
  • Hyderabad, INDIA
View GitHub Profile
@moinuddin14
moinuddin14 / connect.ps1
Created July 14, 2017 15:00 — forked from jdforsythe/connect.ps1
Remote Desktop Auto Login Powershell Script
echo "Connecting to 192.168.1.100"
$Server="192.168.1.100"
$User="Administrator"
$Password="AdminPassword"
cmdkey /generic:TERMSRV/$Server /user:$User /pass:$Password
mstsc /v:$Server
import json
from os.path import exists
from selenium import webdriver
from selenium.webdriver.support.ui import WebDriverWait
from selenium.common.exceptions import TimeoutException
class GoogleGroupsScraper(object):
""" A simple class to scrape a google group. """