Posts Tagged ‘powershell’

Bookmarks for May 22nd through May 27th

These are my links for May 22nd through May 27th: virtualization.info | XenDesktop beats View in Burton Group’s VDI assessment, none of them is good enough – Both Citrix XenDesktop 4.0 and VMware View 4.01 have been measured against the criteria and a couple of extremely interesting things emerged. Home – SharePoint 2010 Admin WIki [...]

Bookmarks for March 6th through March 24th

These are my links for March 6th through March 24th: Script List « Virtu-Al – Sweet powershell scripts for ESX The iPhone Exchange ActiveSync Guide – Stephen Foskett, Pack Rat – The iPhone now has most of the functions of the BlackBerry: Over-the-air push and sync of Exchange email, contacts, and calendars! This guide is [...]

Bookmarks for February 3rd through February 4th

These are my links for February 3rd through February 4th: Shariq Sheikh | Port 389 – – activity of Active Directory and the rest – A really good site about Active Directory Online Password Generator – Password security shouldn't be taken lightly. Security professional will tell you that secure passwords should be difficult to guess [...]

Get AD Schema info from PowerShell

Image via Wikipedia I was looking for a way to collect user information with Get-QADUser from other domains. (I’m thinking I need to use the searchscope option but haven’t found the syntax yet) and ran into this little gem Get-QADRootDSE | Format-List *   The output will give you the DC Function level,the domain function [...]

windows 2008 and dotNET framework

Image via Wikipedia Just installed out first Windows 2008 R2 Server. When we tried to install SQL 2008 it needed .NET framework 3.5, but said that we had to install it via server roles. I found this powershell command to install the .NET Framework   servermanagercmd -i NET-Framework-Core   I’ve written (pieced together) a few [...]

powershell script to list all servers in the forest

I was looking for a way to get a list of all server in our AD forest. Here’s what I have so far Get-QADComputer -searchroot ‘DC=domain,DC=com’ -OSName ‘Windows*Server*’| format-Table name, OSName –auto Even though domain.com is the root of our AD forest its not searching the entire subtree. I’ve used many different sites to put [...]

powershell to get network settings

We are moving our core DNS and WINS server soon, so I need to update all our servers with the new information. I used Hyena to get a list of all of our servers. Then I started looking for a script to gather the current network info so we knew what we needed to change. [...]

Subscribe to RSS Feed Follow me on Twitter!