PS C:\Scripts>Write-host "The Best Way To Predict The Future" -foreground white The Best Way To Predict The Future PS C:\Scripts>"is to create it!"|for-each {write-host $_.toupper() -foreground white} IS TO CREATE IT!
Wednesday, May 23, 2012
Alternative Biological Sensory Inputs
Baylor College is developing a vest which captures auditory (and soom more types) inputs and translates them into electrical streams which get sent to the brain as input. Video courtesy of www.bigthink.com.
Tuesday, May 22, 2012
Facebook: Blocking Zynga Slingo
I enjoy Facebook but some "features" are annoying. One pet peeve of mine is application requests from friends playing their Facebook games. Facebook's Help Center provided nice information on how to stop these requests from showing up.
1. To remove Zynga Slingo application requests from appearing on your Facebook page, type "Zynga Slingo" into the search field at the top of your page. Select the resulting Zynga Slingo App Page and NOT their Game page.
1. To remove Zynga Slingo application requests from appearing on your Facebook page, type "Zynga Slingo" into the search field at the top of your page. Select the resulting Zynga Slingo App Page and NOT their Game page.
2. Go to the right side of the "Play Game" drop down menu and click on the down arrow. Select Block App.
3. Click Okay to block the app. You will no longer see your friends' progress in the game nor will you be pestered by their Zynga Slingo app requests.
4. This technique can apply to any Facebook application. Some software developers name the app the same as the page so when you try to directly block the app by clicking on the X next to the request, it goes to the App page which assumes you want to install the program instead of removing the request.
Friday, May 4, 2012
PowerShell 2.0 and WMI remoting for Windows XP
This is how to install PowerShell 2.0 and WMI for Windows XP via batch file which minimizes the installation process replication.
1. Create a server share that all your computers can access (i.e. \\server\share$)
2. Download the full DotNet Framework 3.5 Service Pack 1 (dotnetfx35.exe)and place the file into the \\server\share$ location.
2. Download PS 2.0 for XP (WindowsXP-KB968930-x86-ENG.exe) and place the file into the \\server\share$ location.
3. You will create two new scripts in your \\server\share$ folder. One will be the installation batch file and the other will be a WMI remote-enabling PowerShell script.
- if not exist "%SystemRoot%\Microsoft.NET\Framework\v3.5\Microsoft .NET Framework 3.5 SP1\*.*" \\server\share$\dotnetfx35.exe (you will have to interact with this executable should it need to install)
- if not exist "%SystemRoot%\system32\WindowsPowerShell\v1.0\powershell.exe" \\server\share$\WindowsXP-KB968930-x86-ENG.exe /q (no interaction needed)
- regedit /i /s \\server\share$\unrestrictedps.reg (create a .reg file with:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PowerShell\1\ShellIds\Microsoft.PowerShell]
"Path"="C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe"
"ExecutionPolicy"="Unrestricted"
4. "%SystemRoot%\system32\WindowsPowerShell\v1.0\powershell.exe" \\server\share$\XP-enableremote.ps1
Then the PowerShell script:
- enable-psremoting -force
- set-item wsman:localhost\client\trustedhosts -value * -force
Subscribe to:
Posts (Atom)