Summary: Get your Windows Azure Active Directory tenant ID in Windows PowerShell. How can I get my Windows Azure Active Directory tenant ID in Windows PowerShell? Use the Add-AzureAccount cmdlet to add your Windows Azure account to Windows PowerShell:PS C:> Add-AzureAccount Then use Get-...
Summary: Guest blogger, Rohn Edwards, discusses reusing code that obtains the last-modified time stamp from the registry.
Microsoft Scripting Guy, Ed Wilson, is here. Today is the last day of the year, but don’t despair. We are here to share some Windows PowerShell goodies with you. Welcome back Rohn Edwards as our guest blogger ...
Summary: Use Windows PowerShell to find registry access.
How can I use Windows PowerShell to get the ACL for a registry key?
Use the Get-ACL cmdlet on a key in a Windows PowerShell registry drive. The following example shows access to the HKLM\Software\Microsoft key:
Get-acl HKLM:\SOFTWARE\...
Summary: Guest blogger, Rohn Edwards, talks about using Windows PowerShell to access the last-modified time stamp in the registry.
Microsoft Scripting Guy, Ed Wilson, is here. Welcome back guest blogger, Rohn Edwards. Rohn is one of the cofounders of the Mississippi PowerShell User Group.
I’m not sure how many of you know this, but the ...
Summary: Use Windows PowerShell to disable a network adapter.
How can I use Windows PowerShell to disable a network adapter on my Windows 8.1 laptop named Wireless?
Use the Disable-NetAdapter cmdlet and provide the name of Wireless to the command:
Disable-NetAdapter –name wireless...