Showing archive results for 2014

Nov 23, 2014
Post comments count1
Post likes count0

PowerTip: Use PowerShell to Find If Folder Inherits from Parent

Doctor Scripto

Summary: Use Windows PowerShell to determine if an NTFS folder inherits from its parent folder.  How can I use Windows PowerShell to determine if an NTFS folder inherits from its parent folder?  Use the Get-NTFSAccessInheritance cmdlet provided by the NTFSSecurity module, for example: Get-NTFSAccessInheritance -Path C:\Windows Or if you w...

Nov 23, 2014
Post comments count0
Post likes count0

Weekend Scripter: Manage NTFS Inheritance and Use Privileges

Doctor Scripto

Summary: Microsoft PFE, Raimund Andree, talks about using Windows PowerShell to disable inheritance on folders. Microsoft Scripting Guy, Ed Wilson, is here. Today Raimund Andree, talks about using Windows PowerShell to disable inheritance on folders. Take it away, Raimund... In my previous post, Use PowerShell to Get, Add, and Remove NTFS Permissio...

Scripting Guy!Windows PowerShellguest blogger
Nov 22, 2014
Post comments count0
Post likes count0

PowerTip: Use PowerShell to Show Hidden Files

Doctor Scripto

Summary: Use Windows PowerShell to display only hidden files.  How can I see hidden files by using Windows PowerShell 4.0?  Use the Get-ChildItem cmdlet, and add the –Hidden and the –File switches: Get-ChildItem -Hidden -File

Scripting Guy!Windows PowerShellPowerTip
Nov 22, 2014
Post comments count0
Post likes count0

Weekend Scripter: Use PowerShell to Get, Add, and Remove NTFS Permissions

Doctor Scripto

Summary: Microsoft PFE, Raimund Andree, talks about using Windows PowerShell to get, add, and remove permissions. Microsoft Scripting Guy, Ed Wilson, is here. Today we have Microsoft Premier Field Engineer, Raimund Andree, back to talk about using Windows PowerShell to work with permissions... Managing file and folder permissions in Windows Power...

Scripting Guy!Windows PowerShellguest blogger
Nov 21, 2014
Post comments count0
Post likes count0

PowerTip: Identify All Stopped Azure Virtual Machines with PowerShell

Doctor Scripto

Summary: Identify virtual machines that are shut down, but are consuming billing time.  How can I use Windows PowerShell to track virtual machines that are not shut down from            the management portal in Azure?  Use the Get-AzureVM cmdlet, and filter on 'StoppedVM' status:...

Windows PowerShellPowerTipguest blogger