Invoke-Command -ComputerName $computername -ScriptBlock {Remove-Item c:\windows\temp\* -Force -Recurse}
Invoke-Command -ComputerName $computername -ScriptBlock {Get-PSDrive c}
Jul 25, 2016
Invoke-Command removing temp files
For some reason c:\windows\temp seems to be filling up with Windows Updates on a lot of our servers. Here is a quick Invoke-Command solution.
Mar 17, 2016
Spotlight Issues
I'm not sure what upgrade did it but at one point, Spotlight became totally unusable for me. I think it was a major update that enabled web-searches as part of Spotlight.
Now I've been using Spotlight for years to launch applications. There's nothing easier when you're typing along and need to launch an application than hitting 'command - space' and continuing to work, or to do a quick bit of math, or a to take a quick note... the possibilities are endless (okay, not endless but it's a lot!). At some point, that quick little shortcut became a long, long pause.
Now recently I decided to tackle this issue as it became just too frustrating. I messed with the Spotlight preferences, I re-indexed, I searched, but eventually gave up until I launched activity monitor to see what was going on behind the scenes. I saw that 'suggestd' was pegging the CPU during that time. A quick search brought up this link which seems to have solved the problem.
https://discussions.apple.com/thread/7264893?start=0&tstart=0
Basically you need to delete the ~/Library/Suggestions folder and relogin. I'm sure there is some kind of cache in there that was corrupted somewhere along the way. Anyway, this was a great find for me and I'm happily back to using Spotlight on a regular basis.
Now I've been using Spotlight for years to launch applications. There's nothing easier when you're typing along and need to launch an application than hitting 'command - space' and continuing to work, or to do a quick bit of math, or a to take a quick note... the possibilities are endless (okay, not endless but it's a lot!). At some point, that quick little shortcut became a long, long pause.
Now recently I decided to tackle this issue as it became just too frustrating. I messed with the Spotlight preferences, I re-indexed, I searched, but eventually gave up until I launched activity monitor to see what was going on behind the scenes. I saw that 'suggestd' was pegging the CPU during that time. A quick search brought up this link which seems to have solved the problem.
https://discussions.apple.com/thread/7264893?start=0&tstart=0
Basically you need to delete the ~/Library/Suggestions folder and relogin. I'm sure there is some kind of cache in there that was corrupted somewhere along the way. Anyway, this was a great find for me and I'm happily back to using Spotlight on a regular basis.
Aug 31, 2015
Using Credentials in Powershell
Gracefully borrowed from http://www.adminarsenal.com/
Putting it all together
We now know how to convert a SecureString to an encrypted standard string. We can take any method we like to get a SecureString, convert it to a standard string and then save it to a file. Here is an example of each:
Exporting SecureString from Plain text
"P@ssword1" | ConvertTo-SecureString -AsPlainText -Force | ConvertFrom-SecureString | Out-File "C:\Temp 2\Password.txt"
Exporting SecureString from Get-Credential
(Get-Credential).Password | ConvertFrom-SecureString | Out-File "C:\Temp 2\Password.txt"
Exporting SecureString from Read-Host
Read-Host "Enter Password" -AsSecureString | ConvertFrom-SecureString | Out-File "C:\Temp 2\Password.txt"
Any one of these examples should provide you with a Password.txt file that has an encrypted standard string the represents the password.
When you need to use this encrypted password, you simply reverse the process by importing the data from your file and use ConvertTo-SecureString. If all you need is a SecureString, you can stop there. You could even take it a step further and create a PSCredential object.
Creating SecureString object
$pass = Get-Content "C:\Temp 2\Password.txt" | ConvertTo-SecureString
Creating PSCredential object
$User = "MyUserName" $File = "C:\Temp 2\Password.txt" $MyCredential=New-Object -TypeName System.Management.Automation.PSCredential ` -ArgumentList $User, (Get-Content $File | ConvertTo-SecureString)
Aug 24, 2015
Apple Launches iPhone 6 camera replacement program
From the everlasting, all-knowing Slashdot. It should be noted that this is just for the iPhone 6 PLUS model.
http://hardware.slashdot.org/story/15/08/22/1419206/apple-launches-free-iphone-6-plus-camera-replacement-program
https://www.apple.com/support/iphone6plus-isightcamera/
http://hardware.slashdot.org/story/15/08/22/1419206/apple-launches-free-iphone-6-plus-camera-replacement-program
https://www.apple.com/support/iphone6plus-isightcamera/
Jun 22, 2015
CBS Now Offering Monthly Service
One of the big networks are finally offering a monthly fee service. CBS is now offering a CBS All Access service at $5.99/mo. for streaming all content. They claim even the NCAA basketball tourney will be streamed. Not a bad price for access to all of the shows. Now I need to start choosing keeping closer tabs on the monthly service fees for streaming.
It makes me wonder how long it will take someone to start up a service to package these streaming services and make them available the way cable companies should have done long ago.
Subscribe to:
Posts (Atom)