Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. 1RedOne

    AD HomeDirectory Help!

    First I would try running that command in segments in my console window, to see if you get any output. Break it down: Get-QADUser -SizeLimit 0 -SearchRoot "ou=Ccntr-J,OU=Region Coastal,OU=Central Division,DC=home,DC=com,DC=com" If you don't get all of the users in the Cost-Center-J OU here...
  2. 1RedOne

    Exporting Results To File

    You're not really making a Powershell script here, this is much more of a VBscript posing as Powershell, for one. For two, you can use Powershell's builtin Get-WmiObject cmdlet to query all Windows Installer (MSI) installed applications. This is a pretty powerful and simple way to get the...
  3. 1RedOne

    Remove Hyphens from output

    You just need to remove hyphens? Here is a simple example. You can use the -replace parameter of any variable to perform this operation. PS C:\so> $numberswhashes = "12-45--5-5646-","770-97-606-","41124" PS C:\so> $numberswhashes 12-45--5-5646- 770-97-606- 41124 PS C:\so> $numberswhashes...

Part and Inventory Search

Back
Top