Virtualization EcoShell
For those of you who manage a VMware environment this FREE tool is a must. It’s all written on top of Microsoft’s PowerShell and is eventually going to be built right into PowerGUI. Very very cool.
Download here
Virtualization EcoShell
For those of you who manage a VMware environment this FREE tool is a must. It’s all written on top of Microsoft’s PowerShell and is eventually going to be built right into PowerGUI. Very very cool.
Download here
This is too cool.
PowerShell 2.0 CTP 3 still doesn’t have native Active Directory cmdlets. You can still get into AD and do stuff, but have to use the native ADSI calls. The FREE Quest AD tools just adds a snapin of cmdlets that you can use to do AD stuff. Very easy to build into your scripts for automation. Good stuff for you PowerShell users. If you want to add the snapin to the native PS install, follow my how to here.
Download the Quest tool here.
AD Quest Cmdlets
Add-QADGroupMember
Add-QADMemberOf
Add-QADPasswordSettingsObjectAppliesTo
Add-QADPermission
Approve-QARSApprovalTask
Connect-QADService
Convert-QADAttributeValue
Deprovision-QADUser
Disable-QADUser
Disconnect-QADService
Enable-QADUser
Get-QADComputer
Get-QADGroup
Get-QADGroupMember
Get-QADMemberOf
Get-QADObject
Get-QADObjectSecurity
Get-QADPasswordSettingsObject
Get-QADPasswordSettingsObjectAppliesTo
Get-QADPermission
Get-QADPSSnapinSettings
Get-QADRootDSE
Get-QADUser
Get-QARSAccessTemplate
Get-QARSAccessTemplateLink
Get-QARSApprovalTask
Get-QARSOperation
Move-QADObject
New-QADGroup
New-QADObject
New-QADPasswordSettingsObject
New-QADUser
New-QARSAccessTemplateLink
Reject-QARSApprovalTask
Remove-QADGroupMember
Remove-QADMemberOf
Remove-QADObject
Remove-QADPasswordSettingsObjectAppliesTo
Remove-QADPermission
Remove-QARSAccessTemplateLink
Rename-QADObject
Restore-QADDeletedObject
Set-QADGroup
Set-QADObject
Set-QADObjectSecurity
Set-QADPSSnapinSettings
Set-QADUser
Set-QARSAccessTemplateLink
Unlock-QADUser
In order to run the ISA 2006 desktop firewall client you need to configure your ISA Proxy to be a dual-legged network. Fun fun proxy stuff.
I needed to do some testing with Exchange 2003 using a Front-End / Back-End setup. I found this step-by-step article with screenshots on how to setup the Windows clustering part. Check it out, it works great. I added some shared storage and was able to successfully fail one node over to the other and vice versa. Cool stuff.
So I needed to build an ISA lab to test the firewall client so that I can start controlling outbound FTP through AD groups. Rather than doing this in PROD I decided to build this in a VMware Workstation environment. This link below is a great resource and did the job.
Click here.
This is a free CD with video’s on OS deployment. Free only until May 16th.
http://www.deploymentcd.com/
Some of the items covered are.
- Installing the deployment server for MDT 2008 Lite Touch
- Installing the deployment server for SCCM 2007 (Zero Touch)
- Creating universal reference images using Lite Touch
- Creating universal reference images using SCCM 2007
- Deploying images using Lite Touch
- Deploying images using SCCM 2007
- Dynamic Settings, using the deployment database
- Assigning applications
- Driver handling and sysprep internals
- Troubleshooting
- Deployment Tips and tricks
It’s been a while since I posted anything here, sorry ’bout that. I thought I would submit this quick post as it’s been driving me crazy for sometime now. If you are running a Windows DFS environment and all seems well except on a few machines, check to see if you have VMware Workstation 6.x installed. Both my test machines do have this installed which causes long hanging issues when browsing DFS shares. Using the physical node name to connect to the shares works fine.
After removing VM Workstation all was well again, very odd. My guess is that because VM is running in the background as a service with the virtual networks that is installed causes it to be confused with Microsoft’s SMB. I ended up creating an entire DFS test environment using production Active Directory servers, lot of time for something so small. Oh well……..I’m okay that it’s just me and some test machines. Anyone else see or hear of this?
http://www.ubuntupocketguide.com/download.html
Have you ever wanted to control your BlackBerry device by talking to it. Let’s say you want to add a new task. All you have to do is say “New Task” get milk. After that you will now have a new task labeled get milk. Very cool and FREE.
http://www.vlingo.com/index.jsp
Tried this out on my BlackBerry and it looks very clean.
I just discovered this FREE tool the other day. It’s kinda like Tivo and a RSS reader for Internet video. There’s some great techie stuff out there. Take a look, there’s over 4000 channel’s.
Download
http://www.getmiro.com/
Here’s a great Miro Channel
https://miroguide.com/channels/4832
I saw this online a little while ago, thought I would share.
http://www.networkworld.com/community/five-free-powershell-tools
Okay so I got the AD cmdlets working in the standard install of Powershell. I didn’t want to use the Quest PowerShell command line interface, that’s just me though. Also, it’ll be easier to run scheduled scripts through the native anyway.
The first thing you need to do is install Windows PowerShell. I’m using the new CTP 2.0 because of it’s remote capabilities and it comes with a nice GUI scripting interface as well which color codes everything.
You need to install .NET 2.0 and I think .NET 3.0 as well. I have both so it didn’t really matter. You also need to install WS-Management which you can get here.
Now download and install the AD Quest tools, these are FREE by the way. This also gives you another PowerShell command line window. Too many command line windows hence the reason for this blog post.
http://www.quest.com/powershell/activeroles-server.aspx
Now it’s time to create your PowerShell profiles. The first thing you want to do is open up the PowerShell command line editor and run the following
test-path $profile
This will tell you if you have a personal PowerShell profile. A profile runs when you launch PowerShell so you can customize.
So, lets’ create one, run this PowerShell line
new-item -path $profile -itemtype file -force
Now type
notepad $profile
This will open your personal PowerShell launch profile. This is where you can add the Quest AD tools to open with your native PowerShell. Add the following to the .ps1 file and save.
add-pssnapin quest.activeroles.admanagement
Now close out of PowerShell and open again, you should now have the Quest AD snap-ins in your PowerShell. To test, run
get-pssnapins
Now if you really want to get fancy and allow all your PowerShell tools to load these snappins you can remove the add-psssnapin from your profile above and add it to the systems profile. To do this open up PowerShell and run this line.
new-item -path $env:windir\System32\WindowsPowerShell\v1.0\profile.ps1 -itemtype file -force
This will create a system profile, this will launch for anyone and for any interface on that system. Now edit the newly created .ps1 file in the SYS32 location above with
add-pssnapin quest.activeroles.admanagement
You’re now good to go. These AD Quest tools are great, no more long WMI scripts with these. Enjoy!
Just stumbled upon this today. I need to write some stuff for AD and thought these might be a good place to start.
Great news from VMware.
Rumor has it that on Monday July 28th, VMware will release ESX 3i for free. This is a lightweight version of ESX without the RedHat components. Very cool indeed, especially for home and for labs.
http://www.virtualization.info/2008/07/vmware-to-release-esx-3i-for-free-next.html