Your best source of information and news about microsoft, BIOS and winvista on the internet

Vista ARTICLES TOP 50 Spyware Virus Vista SOFT Vista HELP

rodney.buike

You are currently browsing the articles from MS Windows Vista Compatible Software matching the category rodney.buike.

Using XP Mode in Windows 7

One of the major challenges with moving to a new OS is dealing with older applications.  This was an issue with the release of Windows Vista and in order to mitigate that with Windows 7, Microsoft has released a feature called XP Mode, which runs a Windows XP SP3 virtual machine in the background that can be used to run legacy applications.  What is really interesting is that as a user, you only see a shortcut on the desktop or start menu and interact with the application as you would any other application.  Launch an application and the VM wakes up (by default it hibernates when not in use) and presents the application, close the app and the VM hibernates!

There are two components that need to be installed, Windows Virtual PC which is the successor to Virtual PC 2007, and the XP Mode VM.  Once they are installed there is a simple set up process to turn on Automatic Updates, set a username and password for the XP VM and you are on your way.  The VM can be joined to AD and act as any other domain member.

There are the typical Virtual PC settings such

...
Click to continue reading "Using XP Mode in Windows 7"

Written by rodney.buike on April 30th, 2009 with no comments.
Read more articles on Windows Springboard and rodney.buike and otherSoftware and Windows Client and Virtualization.

Sync DSRM and Domain Admin Passwords

Setting a password for Directory Services Restore Mode is something that is done during the setup of Active Directory.  As a best practice it has always been recommended to change that password on a regular basis, as you would with any other password.  The challenge was the process to do this was complicated and required you to use NTDS in Windows 2003.

This has been addressed in Windows Server 2008 where we can now sync the DSRM password with a Domain Administrator account.  There is a hotfix that needs to be installed which you can download here.  (Note: You do need to request the hotfix and it should be included in SP2)  After it is installed and the server is rebooted, you can run the following command to sync the passwords.

ntdsutil "set dsrm password" "sync from domain account <DomainAdminAccountName>" q q

Written by rodney.buike on February 27th, 2009 with no comments.
Read more articles on Directory Services and rodney.buike and otherSoftware.

Virtual Server to Hyper-V Migration

A lot of people are making the switch from Virtual Server to Hyper-V lately.  I’ve done it on my home network and Thelazyadmin.com servers are in progress of moving to Hyper-V as well.  While you can simply copy over the VHD and create a new VM in Hyper-V and mounting that VHD there is a tool that can help you with this task.  VMC2HV is a free tool that can be used to import a Virtual Server (or VirtualPC) based VM into Hyper-V.  It is a pretty simple tool to use, specify the name and credentials for your Hyper-V server, choose the VMC file of the machine you want to import and click Create Virtual Machine.

VMC2HV-1

A few things to note when using this tool…

  • Once the migration is complete you will have to uninstall the VMAdditions and install the Integration Components.
  • Installing the Integration Components will update the HAL so going back to Virtual Server/PC will be difficult
  • Hyper-V will not boot from virtual SCSI so you will have to move the VMs boot drive to the
...
Click to continue reading "Virtual Server to Hyper-V Migration"

Written by rodney.buike on February 17th, 2009 with no comments.
Read more articles on rodney.buike and otherSoftware and Virtualization.

Create a “Bootable” Windows 7 VHD

A few weeks back we posted an entry on how to boot from a Windows 7 or Server 2008 R2 VHD.  Booting from VHD is new to Windows 7 and Server 2008 R2 but one of the caveats was you needed a “clean” VHD to boot from.  There is a very simple way to create this VHD using an open source tool available on the MSDN Code Gallery called WIM2VHD.

WIM2VHD is a command line tool that converts the WIM image into a VHD you can use to boot off.  It does have a few requirements…

  • The prep machine has to be running Windows 7, Server 2008 R2, either of which could be running in a Hyper-V VM
  • A Windows 7 or Server 2008 R2 installation media
  • The Windows 7 Automated Install Kit Beta

There are a number of switches you will need to know as well in order to create the VHD file…

  • /wim: specifies the path to the WIM file
  • /sku: which version (ServerStandard, Ultimate etc…)  You can also use the SkuIndex if you retrieved that with the ImageX tool
  • /vhd: specifies the path and the name of the VHD to be created
  • /size: specifies the size
...
Click to continue reading "Create a “Bootable” Windows 7 VHD"

Written by rodney.buike on February 10th, 2009 with no comments.
Read more articles on rodney.buike and otherSoftware and Windows Client.

What’s New in 2008 R2 – Offline Domain Join

For as long as we have had Active Directory domains, we have been required to to join client to the domain while they were online and connected to AD.  Without that the join would fail.  Now you always had the ability to join with a script using the NETDOM command but with Windows Server 2008 R2 we can now join a client to our AD domain while offline.  The real benefit hear is that there is no need to supply or enter domain admin credentials.  As you’ll see below a TXT file is created but just for fun open it up with notepad and see what you can make out :)

It is a simple three step process that requires you to run a new utility called DJOIN from an already joined Server 2008 R2 computer.

  1. Create a text file with DJOIN that contains the required information for a computer to join AD
  2. Import the text file using DJOIN on the target computer you wish to join AD
  3. Once connected to the domain, reboot the computer and it will join AD

For joining a computer to the domain using DJOIN there are some switches you need to know about first.

  • /provision – used when there is
...
Click to continue reading "What’s New in 2008 R2 – Offline Domain Join"

Written by rodney.buike on February 9th, 2009 with no comments.
Read more articles on Directory Services and rodney.buike and otherSoftware and windows server.

What’s New in 2008 R2 – .NET and PS in Core

The one thing I missed with Server Core was PowerShell.  While you can run PowerShell cmdlets and scripts remotely, at times it would have been nice to run it locally.  The reason PowerShell was not included was due to the lack of .NET in Server Core.  That changes in R2.

Windows Server Core 2008 R2 includes a subset of .NET which allows PowerShell, as well as other components like ASP.NET.  Specifically Server Core R2 includes:

  • .NET 2.0
  • .NET 3.0 and 3.5
  • Windows Workflow Foundation (WF)
  • Windows Communication Foundation (WCF)
  • Language Integrated Query (LINQ)
  • Support for WoW64 if you are running 32 bit applications
  • Windows Presentation Foundation (WPF) isn’t included but then with no GUI in Server Core it doesn’t really matter much.

    There are a few commands you need to know to get it working in R2.

    Install .NET 3.0 and 3.5

    Start /w ocsetup NetFx3-ServerCore

    Enable 32 bit support, run the

    ...
    Click to continue reading "What’s New in 2008 R2 – .NET and PS in Core"

    Written by rodney.buike on February 6th, 2009 with no comments.
    Read more articles on rodney.buike and otherSoftware and PowerShell and windows server.

    « Older articles

    No newer articles