Browse Forum Posts by Tags

Showing related tags and posts for the Forums application. See all tags in the site
  • Set a registry key value from the command line using ...

    By Todd The PowerShell prompt needs to opened with elevated permissions in order to run any of the cmdlets, just as it requires administrative privilege to do any administration of GPO’s through the GPMC. The shortcut to the Active Directory ... Read More
    Posted to Group Policy (Forum) by ps2 on 04-07-2009
    Filed under: GPO, Configure, Registry
  • Group Policy Team Blog : PowerShell Script with GP cmdlets

    By GPTeam The following is a sample script that sets a Preference registry value in a GPO, then compares that same value to all of the GPO's linked in the same domain. If the value is not already set in a linked GPO, the new GPO is linked to that ... Read More
    Posted to Group Policy (Forum) by ps2 on 05-06-2009
    Filed under: Registry
  • Re: How to get MS Office product key

    This code will give you MS Office product key (no matter if you have 32-bit or 64-bit version of Office XP, Office 2003, or Office 2007). function Search-RegistryKeyValues { param( [string]$path, [string]$valueName ) Get-ChildItem $path -recurse -ea SilentlyContinue | % { if ((Get-ItemProperty -Path...
    Posted to General (Forum) by Aleksandar on 05-18-2009
    Filed under: Registry, Product Key, decrypt, MS Office
  • Re: How to get MS Office product key

    This script will give you a nice object with ComputerName, ProductName (tested on Office and Visio), and ProductKey. Works against the local and a remote computer. You can pass an array of computer names. function Get-MSOfficeProductKey { param ( [ string []] $computerName = "." ) $product...
    Posted to General (Forum) by Aleksandar on 05-18-2009
    Filed under: WMI, Registry, Product Key, MS Office, remote
  • Re: Computer SID

    Let's start with the theory. ;) The computer's SID is stored in the HKEY_LOCAL_MACHINE\SECURITY\SAM\Domains\Account Registry subkey. This key has a value named F and a value named V. The V value is a binary value that has the computer SID embedded within it at the end of its data. This SID is...
    Posted to General (Forum) by Aleksandar on 06-10-2009
    Filed under: SYSInternals, Registry, Security, SID
  • What, no HKCR in PowerShell?

    Introduction If you've been working with PowerShell for registry access, you've probably noticed by now that something is missing. PowerShell has two registry “drives” defined: HKLM for HKEY_LOCAL_MACHINE HKCU for HKEY_CURRENT_USER The ... Read More
    Posted to General (Forum) by ps2 on 06-25-2009
    Filed under: Registry, PSDrive, HKCR
  • Powershell – Navigating the Registry to dump a list of installed applications

    By Sean Kearney “I Need a way to list all my installed applications in Powershell in Windows 7! I need it now! I need it Quick! Or I'll find myself doing nothing but testing badly designed and poorly assembled hardware for the rest of my life! Help me! ... Read More
    Posted to General (Forum) by ps2 on 08-23-2009
    Filed under: Registry, Installed Programs
  • PowerShell: Get Information About Installed Applications without using WMI

    By Lars Rasmussen In PowerShell, the simplest way to display the [Installed Applications] is to use the Get-ChildItem cmdlet (which has the alias of gci), then pipe its results to the Get-Item- Property cmdlet. (Get-ChildItem doesn't retrieve information ... Read More
    Posted to General (Forum) by ps2 on 09-03-2009
    Filed under: Registry, Installed Applications
  • Enabling User Account Control in "Always Notify" mode

    No comments on the merits of User Account Control, please - I need to test in an environment with it "all the way on" - which, on Windows Server 2008 R2 Enterprise, is the "Always Notify" option. Figured I'd mass-change the systems (because after the test, I'm turning the...
    Posted to PowerShell for Windows (Forum) by airchristian on 07-12-2011
    Filed under: User Account Control, registry, UAC
  • Environment on remote server not known/set when doing remoting.

    Hi, I am new to PS have taken over an existing pool of PS scripts. The 'hub' is a Scheduler that executes jobs on the local server (Server 2008). Now we need to spread out the execution of the jobs on serveral servers. Romoting should be the answer :-) My big problem is that when I, from the...
    Posted to PowerShell for Windows (Forum) by mrode on 09-26-2011
    Filed under: windows, remoting, file system, registry
Page 1 of 2 (14 items) 1 2 Next >
Concentrated Tech NSoftware Dell Compellent Sponsored by Idera and Concentrated Tech and NSoftware and Dell Compellent
Copyright 2011 PowerShell.com. All rights reserved.