MSFN Forum: How-To: Install RSAT (Remote Server Administration Tools) on Win 7 Sp1 - MSFN Forum

Jump to content


Windows 7 forum rules

If you have questions about customizing Windows 7 that are vLite-specific, please post them in the vLite forum, not here. If you have questions regarding the unattended installation of Windows 7, please post them in the Unattended Windows 7/Server 2008 R2 section.
Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

How-To: Install RSAT (Remote Server Administration Tools) on Win 7 Sp1 MS says "not possible", I show you how you have to do it :D

#1 User is offline   MagicAndre1981 

  • after Windows 7 GA still Vista lover :)
  • Group: Patrons
  • Posts: 5,018
  • Joined: 28-August 05
  • OS:Vista Ultimate x86
  • Country: Country Flag

Posted 02 March 2011 - 12:27 PM

Microsoft released the Remote Server Administration Tools for Windows 7 with Service Pack 1 (SP1) now. Download and install the Update.

If you already applied my Workaround, you can install the Update, I tried it and can't find any issue with installing the new RSAT update.


This post was provided as a workaround. Don't use it any longer!!!!!!!!

Get the Remote Server Administration Tools for Windows 7 with Service Pack 1 (SP1) and use this new installer!!!!!!!!!!!!!!!!!






























When you try to install the RSAT on Windows7 Sp1 you get this error:

Quote

"This update is not applicable to your computer"


Posted Image

MS documented this here:
http://support.micro...b/2517239/en-us

I found a workaround which was censored at the MS Blogs, so I post it here:

1. step:
extract the x86fre_GRMRSAT_MSU.msu to a folder like D:\RSAT

2. step
Run this expand command to extract the CAB:

expand -f:* "D:\RSAT\Windows6.1-KB958830-x86.cab" "D:\RSAT\expand"


3. Step
Download the Windows 7 Sp1

4. Run the following command:

windows6.1-KB976932-X86.exe /X:D:\Sp1


to extract the Sp1 to D:\Sp1

5. run this

expand -f:* "D:\Sp1\windows6.1-KB976932-X86.cab" "D:\RSAT\sp1"


to extract the Sp1 CAB to D:\RSAT\sp1.

6. Install the RSAT MUMs (look at at the taskmgr when the pkgmgr finished to run the next command)

pkgmgr /ip /m:"D:\RSAT\expand\microsoft-windows-remoteserveradministrationtools-package~31bf3856ad364e35~x86~~6.1.7600.16385.mum"


pkgmgr /ip /m:"D:\RSAT\expand\microsoft-windows-remoteserveradministrationtools-package~31bf3856ad364e35~x86~en-us~6.1.7600.16385.mum"
(replace the en-us MUM with the languages you have installed!)

pkgmgr /ip /m:"D:\RSAT\expand\microsoft-windows-remoteserveradministrationtools-package-minilp~31bf3856ad364e35~x86~en-us~6.1.7600.16385.mum"
(replace the en-us MUM with the languages you have installed!)

pkgmgr /ip /m:"D:\RSAT\Sp1\microsoft-windows-remoteserveradministrationtools-package~31bf3856ad364e35~x86~~6.1.7601.17514.mum"


7. Reboot (if needed) and open "Turn Windows Features on or Off" and activate the RSAT Tools you want.

Posted Image

Posted Image

Posted Image

Enjoy the RSAT Tools in Windows 7 Sp1 until MS provides an Sp1 compatible Update in April.

For a x64 Windows, replace x86 with amd64.

This post has been edited by MagicAndre1981: 08 April 2011 - 10:38 AM



#2 User is online   Tripredacus 

  • K-Mart-ian Legend
  • Group: Super Moderator
  • Posts: 8,726
  • Joined: 28-April 06
  • OS:Server 2012
  • Country: Country Flag

Posted 03 March 2011 - 11:27 AM

Does this only work for Ultimate, or other versions as well?

#3 User is offline   degustator 

  • Group: Members
  • Posts: 2
  • Joined: 19-September 04

Posted 03 March 2011 - 03:35 PM

A couple of suggestions.

  • Use “start /wait” to ensure previous command was finished. For example, SP self-extractor module has no visual indicator of the procress. It just exits once it's done. So you could watch the process using Task Manager or run it like this:
    start /wait E:\windows6.1-KB976932-X64.exe /x:C:\Sp1x64
    

  • Don't use the Package Manager, it's deprecated in Windows 7. Use DISM instead. It's even more powerful and fully supported. (Sounds strange in thread like this, huh?).
  • You can install all MUMs at once. Run it like this (provided with full paths to each of the files):
    DISM.exe /Online /NoRestart /Add-Package /PackagePath:"microsoft-windows-remoteserveradministrationtools-package~31bf3856ad364e35~amd64~~6.1.7600.16385.mum" /PackagePath:"microsoft-windows-remoteserveradministrationtools-package~31bf3856ad364e35~amd64~en-us~6.1.7600.16385.mum" /PackagePath:"microsoft-windows-remoteserveradministrationtools-package-minilp~31bf3856ad364e35~amd64~en-us~6.1.7600.16385.mum" /PackagePath:"microsoft-windows-remoteserveradministrationtools-package~31bf3856ad364e35~amd64~~6.1.7601.17514.mum"
    
    
    (note it is one line command!)
  • You can install all RSAT components at once in a similar way (instead of ticking checkboxes in the GUI windows on the last step):
    DISM.exe /Online /NoRestart /Enable-Feature /FeatureName:"RemoteServerAdministrationTools" /FeatureName:"RemoteServerAdministrationTools-ServerManager" /FeatureName:"RemoteServerAdministrationTools-Roles" /FeatureName:"RemoteServerAdministrationTools-Roles-CertificateServices" /FeatureName:"RemoteServerAdministrationTools-Roles-CertificateServices-CA" /FeatureName:"RemoteServerAdministrationTools-Roles-CertificateServices-OnlineResponder" /FeatureName:"RemoteServerAdministrationTools-Roles-AD" /FeatureName:"RemoteServerAdministrationTools-Roles-AD-DS" /FeatureName:"RemoteServerAdministrationTools-Roles-AD-DS-SnapIns" /FeatureName:"RemoteServerAdministrationTools-Roles-AD-DS-AdministrativeCenter" /FeatureName:"RemoteServerAdministrationTools-Roles-AD-DS-NIS" /FeatureName:"RemoteServerAdministrationTools-Roles-AD-LDS" /FeatureName:"RemoteServerAdministrationTools-Roles-AD-Powershell" /FeatureName:"RemoteServerAdministrationTools-Roles-DHCP" /FeatureName:"RemoteServerAdministrationTools-Roles-DNS" /FeatureName:"RemoteServerAdministrationTools-Roles-FileServices" /FeatureName:"RemoteServerAdministrationTools-Roles-FileServices-Dfs" /FeatureName:"RemoteServerAdministrationTools-Roles-FileServices-Fsrm" /FeatureName:"RemoteServerAdministrationTools-Roles-FileServices-StorageMgmt" /FeatureName:"RemoteServerAdministrationTools-Roles-HyperV" /FeatureName:"RemoteServerAdministrationTools-Roles-RDS" /FeatureName:"RemoteServerAdministrationTools-Features" /FeatureName:"RemoteServerAdministrationTools-Features-BitLocker" /FeatureName:"RemoteServerAdministrationTools-Features-Clustering" /FeatureName:"RemoteServerAdministrationTools-Features-GP" /FeatureName:"RemoteServerAdministrationTools-Features-LoadBalancing" /FeatureName:"RemoteServerAdministrationTools-Features-SmtpServer" /FeatureName:"RemoteServerAdministrationTools-Features-StorageExplorer" /FeatureName:"RemoteServerAdministrationTools-Features-StorageManager" /FeatureName:"RemoteServerAdministrationTools-Features-Wsrm" /FeatureName:"IIS-LegacySnapIn" /FeatureName:"IIS-IIS6ManagementCompatibility" /FeatureName:"IIS-WebServerManagementTools" /FeatureName:"IIS-WebServerRole" /FeatureName:"IIS-Metabase"
    
    (this is still one line command).


And you can ensure any post-SP1 hotfixes for various RSAT components install just fune on top of this nicely hacked setup.



This gives us a hope we've done a decent job and we'll not be forced to re-image our machines once official RSAT SP1 package get released.

This post has been edited by degustator: 03 March 2011 - 03:37 PM


#4 User is offline   MagicAndre1981 

  • after Windows 7 GA still Vista lover :)
  • Group: Patrons
  • Posts: 5,018
  • Joined: 28-August 05
  • OS:Vista Ultimate x86
  • Country: Country Flag

Posted 03 March 2011 - 04:32 PM

thanks for the Feedback. I'm aware that DISM is the current version, I prefer the classic tools. Sounds strange but ImageX is faster compared to DISM. So i stay at the old tools.

I tested the last linked hotfix and it works:

Attached File  RSAT_6.png (23.34K)
Number of downloads: 17

Attached File  RSAT_7.png (35.23K)
Number of downloads: 10

#5 User is online   cluberti 

  • Gustatus similis pullus
  • Group: Supervisor
  • Posts: 11,219
  • Joined: 09-September 01
  • OS:Windows RT
  • Country: Country Flag

Posted 03 March 2011 - 09:47 PM

Good workaround - you can do this with lots of packages, not just RSAT - anything that comes in an MSU can be extracted and force-installed (well, almost anything). However, it does only install the RTM bits, as you said, whereas having the tools installed and then upgrading to SP1 does upgrade the RSAT binaries to SP1 levels. Just as long as people are aware of possible issues, bugs, and limitations of using the RTM tools on an SP1 system, and are willing to take those risks, I say go for it :P.

#6 User is offline   MagicAndre1981 

  • after Windows 7 GA still Vista lover :)
  • Group: Patrons
  • Posts: 5,018
  • Joined: 28-August 05
  • OS:Vista Ultimate x86
  • Country: Country Flag

Posted 04 March 2011 - 05:15 AM

View Postcluberti, on 03 March 2011 - 09:47 PM, said:

Good workaround - you can do this with lots of packages, not just RSAT - anything that comes in an MSU can be extracted and force-installed (well, almost anything).


I know, I do this to get the old NTBackup reader working on a German Windows7. The NTBackup Reader update checks for English MUI.

View Postcluberti, on 03 March 2011 - 09:47 PM, said:

However, it does only install the RTM bits, as you said, whereas having the tools installed and then upgrading to SP1 does upgrade the RSAT binaries to SP1 levels.


that's why I expand the Sp1 and install the Sp1 package of RSAT

#7 User is offline   kmccann1 

  • Group: Members
  • Posts: 1
  • Joined: 05-March 11
  • OS:none specified
  • Country: Country Flag

Posted 05 March 2011 - 09:56 PM

MUCH easier way to do this:

Comment by chibisuke — February 22, 2011 @ 7:19 am

the simple way:
on command line:

expand -f:* g:\msu\amd64fre_FRMRSATX_MSU.msu rsat
pkgmgr.exe /n:g:\msu\rsat\Windows6.1-KB958830-x64.xml

replace path with any path you like, make sure “rsat” subdirectory exists (g:\msu\rsat\ in the example)

after executing the pkgmgr command it will take a few minutes without anything – no progressbar or anything – just nothing.

After a few minutes (10 – 15 minutes) you’re prompted to reboot.
Do so.
Then go so control panel -> windows functions and add install the remote admin stuff you want to use.

Note: also works for windows 7 home premium.


Found here: http://4sysops.com/a...-windows-7-sp1/

#8 User is offline   MagicAndre1981 

  • after Windows 7 GA still Vista lover :)
  • Group: Patrons
  • Posts: 5,018
  • Joined: 28-August 05
  • OS:Vista Ultimate x86
  • Country: Country Flag

Posted 06 March 2011 - 09:57 AM

no, as you can read this doesn't work and you get the old RSAT tools ;) With my way you get the Sp1 Tools.

#9 User is offline   javi 

  • Group: Members
  • Posts: 1
  • Joined: 23-March 11
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 23 March 2011 - 10:20 PM

I registered just to say "THANK YOU"...

This worked PERFECT on my Win7 Ent x64...

Again, THANKS!!!

#10 User is offline   MagicAndre1981 

  • after Windows 7 GA still Vista lover :)
  • Group: Patrons
  • Posts: 5,018
  • Joined: 28-August 05
  • OS:Vista Ultimate x86
  • Country: Country Flag

Posted 24 March 2011 - 05:48 AM

nice to hear this.

@cluberti

have you made the topic sticky?

#11 User is online   cluberti 

  • Gustatus similis pullus
  • Group: Supervisor
  • Posts: 11,219
  • Joined: 09-September 01
  • OS:Windows RT
  • Country: Country Flag

Posted 24 March 2011 - 08:10 AM

Yes.

#12 User is offline   WillDent 

  • Group: Members
  • Posts: 2
  • Joined: 24-March 11
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 24 March 2011 - 10:55 AM

Ok. Good enought. All works out.
However, need the same thing for the Windows Media Remote Server Tools.
http://support.microsoft.com/kb/970985

Windows6.1-KB970985-x64.msu
Windows6.1-KB970985-x86.msu

I can probably get the items out of the MSU, but how to go find the SP1 updates to add?

THX

#13 User is offline   MagicAndre1981 

  • after Windows 7 GA still Vista lover :)
  • Group: Patrons
  • Posts: 5,018
  • Joined: 28-August 05
  • OS:Vista Ultimate x86
  • Country: Country Flag

Posted 24 March 2011 - 11:06 AM

you don't need this workaround. I can install the update. The installer doesn't block the installation on the Sp1

#14 User is offline   WillDent 

  • Group: Members
  • Posts: 2
  • Joined: 24-March 11
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 24 March 2011 - 02:03 PM

Arrgh!!!!

Cannot figure out the install for Remote Server Administration Tools for Windows Media Services.

I can get the MUMs installed and it even shows up in Windows update as being installed. However, the RSAT for Windows Media Services does not present itself on the MMC choices!!!

#15 User is online   cluberti 

  • Gustatus similis pullus
  • Group: Supervisor
  • Posts: 11,219
  • Joined: 09-September 01
  • OS:Windows RT
  • Country: Country Flag

Posted 24 March 2011 - 02:59 PM

Probably want to make a new thread for that or take it into PM until we do (or do not) get a definitive working install for that component. That way this thread stays "clean", at least as much as possible. I hope you figure it out though.

#16 User is offline   Mr Snrub 

  • Former MSFT
  • Group: Super Moderator
  • Posts: 774
  • Joined: 14-September 04
  • OS:Windows 8 x64
  • Country: Country Flag

Posted 08 April 2011 - 04:25 AM

Remote Server Administration Tools for Windows 7 with Service Pack 1 (SP1) is now available as a public download.

#17 User is offline   MagicAndre1981 

  • after Windows 7 GA still Vista lover :)
  • Group: Patrons
  • Posts: 5,018
  • Joined: 28-August 05
  • OS:Vista Ultimate x86
  • Country: Country Flag

Posted 08 April 2011 - 05:35 AM

thanks. I will test how to update my hack to the offical installers.

#18 User is offline   MagicAndre1981 

  • after Windows 7 GA still Vista lover :)
  • Group: Patrons
  • Posts: 5,018
  • Joined: 28-August 05
  • OS:Vista Ultimate x86
  • Country: Country Flag

Posted 08 April 2011 - 10:29 AM

ok, I've updated the first post and added the links. I was able to install the RSAT update on top of my hack without any issue.

Share this topic:


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

4 User(s) are reading this topic
0 members, 4 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2013 msfn.org
Privacy Policy