-
Summary : Use Windows PowerShell to create a date in the future. How can I easily create dates in the future? Use the Get-Date cmdlet and add days to it: (Get-Date).adddays(2) Read More...
-
Summary : Guest blogger, Brian Wilhite, talks about using Windows PowerShell to determine pending reboot status. Microsoft Scripting Guy, Ed Wilson, is here. Today we have the first of a two-part series about using Windows PowerShell to determine if a...
-
Summary : Learn how to use Windows PowerShell to create a computer restore point. How can I use Windows PowerShell to create a computer restore point? Use the Checkpoint-Computer cmdlet and specify a description for the restore point. Checkpoint-Computer...
-
Summary : Guest blogger, Bob Stevens, talks about how to use Windows PowerShell to perform conditional user profile removal. Microsoft Scripting Guy, Ed Wilson, is here. Today we are lucky to have guest blogger, Bob Stevens, return for another exciting...
-
Summary : Use Windows PowerShell to list all computer restore points on your system. How can I use Windows PowerShell to list computer restore points on my system? Use the Get-ComputerRestorePoint cmdlet: Get-ComputerRestorePoint Note This command must...
-
Summary : Guest blogger, Bob Stevens, talks about using Windows PowerShell to generate a recent profile report. Microsoft Scripting Guy, Ed Wilson, is here. Today I am pleased to welcome back guest blogger, Bob Stevens. Be sure you check out Bob’s...
-
Summary : Use Windows PowerShell to create a new virtual hard disk to use with Hyper-V. How can I create a new virtual hard disk in Hyper-V? Use the New-VHD cmdlet. This will create a 60 GB dynamic disk VHDX file under C:\VHD\ called Mydrive.vhdx: NEW...
-
Summary : Microsoft PowerShell MVP, Sean Kearney, talks about using Windows PowerShell to build and restore snapshots in Hyper-V. Microsoft Scripting Guy, Ed Wilson, is here. If you are a seasoned Hey, Scripting Guy! Blog reader, you know that the most...
-
Summary : Use Windows PowerShell to rename a virtual machine on Hyper-V. How can I easily rename a virtual machine running on Hyper-V? Use the Rename-VM cmdlet: RENAME-VM -Name "My Old VM Name" -newname "Cool New VM Name" Read More...
-
Summary : Microsoft PowerShell MVP, Sean Kearney, concludes his series about creating a home drive with Windows PowerShell. Microsoft Scripting Guy, Ed Wilson, is here. If you are a seasoned Hey, Scripting Guy! Blog reader, you know that the most frequent...
-
Summary : Use Windows PowerShell to add processors to a virtual machine running on Hyper-V. How can I easily add processors to my virtual machine? Use the Set-VMProcessor cmdlet: SET-VMProcessor -VMname "My Virtual Machine" -count 2 This enables...
-
Summary : Create a home drive with Microsoft MVP and honorary Scripting Guy, Sean Kearney. Microsoft Scripting Guy, Ed Wilson, is here. If you are a seasoned Hey, Scripting Guy! Blog reader, you know that the most frequent guest blogger is Sean Kearney...
-
SUMMARY: Microsoft Scripting Guy Ed Wilson talks about PowerShell stuff from Tuesday June 4, 2013. The second day of TechEd 2013 North America in New Orleans continues to roll on. First guest of the day Jeffrey Snover The day started as great...( read...
-
Summary : Use Windows PowerShell to add a network adapter to a virtual machine. How do I add a network adapter to my virtual machine on Hyper-V? Use the ADD-VMNetworkAdapter cmdlet: ADD-VMNetworkAdapter -vmname "My Virtual Machine" -switchname...
-
Summary : Microsoft PowerShell MVP and Honorary Scripting Guy, Sean Kearney, begins a discussion about home drives and Windows PowerShell. Microsoft Scripting Guy, Ed Wilson, is here. If you are a seasoned Hey, Scripting Guy! Blog reader, you know that...