Reply To: Forum issue
Seems to be working now. I changed both the URL and the title of the post (not sure which was the culprit). The new link is http://powershell.org/wp/forums/topic/base-64-versus-encryption/ Edit: Looks...
View ArticleLogging an Event into Windows Event Logs
Hi Im trying to use the attached script file to log an event into the Windows Event Logs when the last previous version was more than 3 days old. Im guessing I will need to add an IF statement in with...
View ArticleReply To: Seeking questions to practice powershell script writting.
does anyone happen to know Scripting Guy’s e-mail ?
View ArticleReply To: Seeking questions to practice powershell script writting.
I don’t think his email address is published, but his website has a contact form you could use: http://www.edwilson.com/contact.aspx . There’s also @ScriptingGuys on Twitter, and...
View ArticleReply To: Is Base-64 the same as encryption
That’s what I thought but lacked the eloquence to write down. I know the judges scores are final, and I wasn’t trying to bitch; I was just trying to make sure I understood things myself. I spent a lot...
View ArticleReply To: Seeking questions to practice powershell script writting.
Use Google. I punched in “Scripting Games 2012,” for example, and the first hit was...
View ArticleReply To: "Inventory Intervention" – Processor inventory script
I added the script to one of my blog entries for that event since the link to it on the Scripting Games site is no longer valid. You can find it here:...
View Article"Download all files" error ?
Try to “Download all files” of the other team (to view submitted entry) and get my own team archive
View ArticleReply To: Is Base-64 the same as encryption
sid351, You also can see how we dit it. (team Schnipersons) it is realtively short functions function Export-E3SecurityInfo function Import-E3SecurityInfo Only two things to say. Using -IV param not...
View ArticleDoing a speedtest with PowerShell
Hi guys! I searched a lot on Google, but most scripts are not working or only showing the link speed from the network card (100/1000). I would like to do a speedtest with PowerShell so I can include...
View ArticleReply To: "Download all files" error ?
There is a known incompatibility with Windows built in ZIP functionality and the server side code that generates the ZIP. I’m not planning to address it until after the Games are over. You can try...
View ArticleReply To: "Download all files" error ?
There is a known incompatibility with Windows built in ZIP functionality and the server side code that generates the ZIP. I’m not planning to address it until after the Games are over. You can try...
View ArticleCombine 2 output CSVs into one?
Hello I am new to powershell and have been reading some books and blogs but need help . I can use PS in a line but having trouble with script syntax. I found a one-liner that I use in PS to produce a...
View ArticleReply To: Combine 2 output CSVs into one?
You can. It’s a bit tricky. The problem is that your CSV file with permissions will have many different rows for each file, depending on how many permissions the file has. That’s called a hierarchical...
View ArticleReply To: Combine 2 output CSVs into one?
Mr Jones I am honored for your reply I have your book learn PS in a month of lunches. The purpose of the file is just for a file server rebuild and possibly some cleanup, this is the reason for who...
View ArticleReply To: Adding users to the local admin – script question
The user is not created until $obj.SetInfo() is called so that needs to happen before you try to add it to the group. µ
View ArticleReply To: Adding users to the local admin – script question
Ahhh that was the problem. Thank you, Mike!
View ArticleReply To: Doing a speedtest with PowerShell
Before considering implementation for a speedtest, you need to define what you mean when you say network speed. How do you define network speed (is it pure upload/download speed for TCP communication...
View ArticleReply To: Logging an Event into Windows Event Logs
Was something like this what you had in mind? if ((.\Get-ShadowCopyStats.ps1 -ServerName $env:COMPUTERNAME).LatestShadowCopy -lt (Get-Date).AddDays(-3)) { Write-EventLog -LogName Application -Source...
View ArticleReply To: Driver-update-history of a specific device thru Powershell
I’m not aware of a way to do this
View Article