The “Hey, Scripting Guys!” blog has been retired. There are many useful posts in this blog, so we keep the blog here for historical reference. However, some information might be very outdated and many of the links might not work anymore.
New PowerShell content is being posted to the PowerShell Community blog where members of the community can create posts by submitting content in the GitHub repository.
Summary: Find the path to the temporary folder.
(image) How can I use Windows PowerShell to find the path to the temporary folder?
(image) Use the Temp variable, and obtain its value from the Env: PS drive.
$env:TEMP
(image...
Summary: Guest blogger, Bob Stevens, talks about using Windows PowerShell to clean out temporary folders on desktops following a malware infection.
Microsoft Scripting Guy, Ed Wilson, is here. Today, we welcome back our newest guest blogger, Bob Stevens. Yesterday Bob wrote about a quick script that he developed to pick out comments from a ...
Summary: Find the settings for all five script execution policy scopes.
(image) How can I use Windows PowerShell to see all of the script execution policies that affect the current Windows PowerShell session?
(image) Use the Get-ExecutionPolicy cmdlet with the &...
Summary: Guest blogger, Bob Stevens, shares a script to pick out comments from a Windows PowerShell script.
Microsoft Scripting Guy, Ed Wilson, is here. Today we have a new guest blogger, Bob Stevens. I made Bob’s virtual acquaintance recently when I did a Live Meeting presentation to the Twin Cities PowerShell User Group.
Here is Bob&...
Summary: Use Windows PowerShell to determine the status of your DHCP server audit log.
(image) How can I use Windows PowerShell to determine the status of my DHCP server audit log in Windows Server 2012?
(image) Use the Get-DHCPServerAuditLog cmdlet and specify the server name:
Get-DhcpServerAuditLog -ComputerName DHCP1
&...