Windows
Hotmail + form to remove IPs from the blacklist
https://support.microsoft.com/en-us/getsupport?oaspworkflow=start_1.0.0.0&wfname=capsub&productkey=edfsmsbl3&ccsid=635646486111579910
Delete windows updates + command line
There is the example for Update for Outlook that cause it to run in safe mode: wusa.exe /uninstall /kb:3114409 see wusa.exe /? for help.
Reading Arduino serial ports in Windows 7 with Python + Pyserial
Copy-pasted from here: http://petrimaki.com/2013/04/28/reading-arduino-serial-ports-in-windows-7/ Here i am going to show you 3 working examples on how to read Arduino serial ports with windows. You are going to need following programs / tools: Arduino UNO Windows 7 Python + Pyserial Installing Python + Pyserial to Windows First you have ton install Python on your computer. This […]
Serial Port Temperature Sensors + Windows
Copy-pasted from here: http://martybugs.net/electronics/tempsensor/software2.cgi Overview On linux, the digitemp application is required to query the temperature sensor. There are various software applications that allow DS18S20 temperature sensors to be queried in Windows, but the easiest is the Windows port of digitemp. Installing digitemp Download digitemp for Windows, and extract digitemp.exe from the zip file. Note […]
Powershell + Send html-file as body
Write-Host “Sending Email” $content = (Get-Content “d:\print.htm” | out-string) Send-MailMessage -to “you@test.com” -subject “Print Report” -from “printer@test.com” -body $content -BodyAsHtml -SmtpServer “server” Write-Host “Finished.”
Netsh + portforward
Create: netsh interface portproxy add v4tov4 listenport=1234 listenaddress=192.168.0.2 connectport=22 connectaddress=192.168.0.10 Delete: netsh interface portproxy delete v4tov4 listenport=1234 listenaddress=192.168.0.2
Winn8.1(and other) + F5 vpn client + cannot connect + you should change your network settings
Just reset WAN Miniport controllers: Netcfg -u MS_L2TP Netcfg -u MS_PPTP Netcfg -l %windir%\inf\netrast.inf -c p -i MS_PPTP Netcfg -l %windir%\inf\netrast.inf -c p -i MS_L2TP
Mozilla Thunderbird + strange behaviour
I got the strange behaviour of Thunderbird: couldn’t open list of letters in the same window, couldn’t create a new letter and so on. Resolved this way: Go to %Appdata%\Roaming\Thunderbird\Profiles\Your Profile and delete all except: Folders: Mail, Imap Mail; Files: key3, abook, prefs, signons. Start Thunderbird again – done.
Windows server 2012 + Shadow session issue
I got the strange behaviour after installing updates. When I connected to a user session and then disconnected the user couldn’t switch languages and the lang.panel disappeared. Resolved such way: Control Panel\All Control Panel Items\Language\Advanced settings\Let me set a different input method for each app window – put a tick. MS brought head ake as […]
NPS + regex
Some notice for using regex in NPS policies. I tried to filter users by a tab: Constraints – Called Station ID with regex: ^.+:MyAP But it didn’t work. So I used the same filter in a tab: Conditions – Called Station ID with regex: ^.+:MyAP Then it started to work.