Enabling Remote Desktop for Windows 7 as a task sequence

Hi there.
I have a task sequence to automate the creation of a base image of Windows 7 x64 Professional. In my base image I would like to have Remote Desktop enabled by default for all users. Is there a command or a script to do this that I can add into my task sequence to make this possible?
Thanks.

I have to agree except I can't understand why anyone would use anything other than the unattend.xml.  You can do all that plus so much more and it's the way Microsoft provides to do it.  This is my complete x64 unattend.xml version but I also have
an x86 version.  This should give you some idea of it's capabilities.
Drop the unattend.xml file into a package and reference it in the Task Sequence as shown below.  I dropped both my x86 and x64 version of the unattend.xml into the package.  I use an OSD HTA menu on the frontend to let helpdesk pick
between x86 and x64.  I cropped the picture up a bit and took out company specific info but you should get the idea from the screen captures.  This is how I deploy x86 and x64 in a single task sequence. I mark every line with a condition in the task
sequence with (C) which makes it easier to find lines with conditions.  I use the condition to assign x86 and x64 software among other things.  The selection in the HTA pretty much triggers everything.
<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
   <settings pass="auditSystem">
   </settings>
   <settings pass="auditUser">
   </settings>
   <settings pass="generalize">
   </settings>
   <settings pass="offlineServicing">
   </settings>
   <settings pass="oobeSystem">
      <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
         <OOBE>
            <HideEULAPage>true</HideEULAPage>
            <NetworkLocation>Work</NetworkLocation>
            <SkipMachineOOBE>false</SkipMachineOOBE>
            <SkipUserOOBE>false</SkipUserOOBE>
            <ProtectYourPC>3</ProtectYourPC>
         </OOBE>
         <UserAccounts>
            <DomainAccounts>
               <DomainAccountList wcm:action="add">
                  <DomainAccount wcm:action="add">
                     <Name>Workstation Admins</Name>
                     <Group>Administrators</Group>
                  </DomainAccount>
                  <Domain>DOMAIN</Domain>
               </DomainAccountList>
            </DomainAccounts>
         </UserAccounts>
      </component>
   </settings>
   <settings pass="specialize">
      <component name="Microsoft-Windows-LUA-Settings" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
         <EnableLUA>false</EnableLUA>
      </component>
      <component name="Security-Malware-Windows-Defender" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="
http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance ">
         <DisableAntiSpyware>true</DisableAntiSpyware>
      </component>
      <component name="Microsoft-Windows-SystemRestore-Main" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
         <DisableSR>1</DisableSR>
      </component>
      <component name="Networking-MPSSVC-Svc" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
         <DomainProfile_EnableFirewall>false</DomainProfile_EnableFirewall>
         <PrivateProfile_EnableFirewall>true</PrivateProfile_EnableFirewall>
         <PublicProfile_EnableFirewall>true</PublicProfile_EnableFirewall>
      </component>
      <component name="Microsoft-Windows-Deployment" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
        <RunSynchronous>
          <RunSynchronousCommand wcm:action="add">
            <Path>reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\CurrentVersion\NetworkList\Signatures\FirstNetwork" /v Category /t REG_DWORD /d 00000000 /f</Path>
            <Description>Setting Network Location</Description>
            <Order>1</Order>
          </RunSynchronousCommand>
        </RunSynchronous>
      </component>
      <component name="Microsoft-Windows-TerminalServices-LocalSessionManager" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
         <fDenyTSConnections>false</fDenyTSConnections>
      </component>
      <component name="Microsoft-Windows-IE-InternetExplorer" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
         <DisableAccelerators>true</DisableAccelerators>
         <DisableOOBAccelerators>true</DisableOOBAccelerators>
         <SuggestedSitesEnabled>false</SuggestedSitesEnabled>
         <DisableFirstRunWizard>true</DisableFirstRunWizard> 
         <DisableWelcomePage>true</DisableWelcomePage>
         <Home_Page>http://www.google.com</Home_Page>
         <SearchScopes>
            <Scope wcm:action="add">
               <ScopeDefault>true</ScopeDefault>
               <ScopeDisplayName>Google</ScopeDisplayName>
               <ScopeKey>SearchProvider1</ScopeKey>
               <ScopeUrl>http://www.google.com/search?q={searchTerms}</ScopeUrl>
            </Scope>
         </SearchScopes>
      </component>
      <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
        <TimeZone>Central Standard Time</TimeZone>
      </component>
   </settings>
</unattend>

Similar Messages

  • How do I enable remote desktop for my free trial of azure?

    I have a free trial with Azure, which I am trying to setup remote desktop access to.
    Following these instructions (http://azure.microsoft.com/en-us/documentation/articles/cloud-services-nodejs-enable-remote-desktop/) I see that I am to enable remote destop using the following cmdlets
    (under the project directory)> Enable-AzureServiceProjectRemoteDesktop 
    and then
    Publish-AzureServiceProject
    However the second step is asking me to specify the subscription:
    publish-azureserviceproject : No current subscription has been designated. Use **Select-AzureSubscription -Current <subscriptionName>** to set the current subscription.
    However, I don't know the name of my subscription. It is listed as Free Trial in the azure management portal, however the following command cannot find any such named subscription
    > Select-AzureSubscription -Current "FREE TRIAL"
    Message:
    Select-AzureSubscription : The subscription named 'FREE TRIAL' cannot be found. Use Set-AzureSubscription to initialize the subscription data.
    The error message also advises that I use the Set-AzureSubscription cmdlet, but again, I don't know what my subscription is named.
    > Set-AzureSubscription "Free Trial"
    Set-AzureSubscription : Cannot bind positional parameters because no names were given.
    Thanks for any help!

    hi James,
    you can either manually configure your Windows Azure Subscription with the Windows Azure PowerShell Cmdlets or you can use a publish settings file.
    Please follow this
    blog post by Michael Washam
    Hope this helps
    Please mark as answered if it helped
    Vishal Narayan Saxena http://twitter.com/vishalishere http://www.ogleogle.com/vishal/

  • OS 10.6.3 and Remote Desktop for windows server, PDF Printer problem

    We are using Remote desktop for mac by windows in the office to work on a remote windows server, On the server we are using a business software (Mamut) for sale. In OS 10.5 we are using the PDF Printer to transfer PDF (invoice) from the business software (Mamut) 'Mamut is seeing the PDF printer as any other printer' to the desk top of your mac, so we can attach the PDF to a mail before we send it out to a customer, but in OS 10.6 the PDF printer is removed! So we need a different way of transfer the PDF from the windows server to the mac desk top.
    So now I am wondering if any one has a suggestion on how to fix this! if not we can't upgrade to OS 10.6, and that would be a shame!

    The thing is that in Mamut, we hit print, and because we us the PDF printer as Printer for Remote desk top, it pup up on the desk top of the mac, as a PDF. But in OS 10.6 there isn't any PDF printer to install, so then we have to make a PDF on the windows server and move it from the server to the mac, by mounting the HD from the Mac to the remote desk top, so it become edible in from the server. I think this is cumbersome.

  • Enabling Remote Desktop On Windows 7 Home Premium

    So, I'm trying to set up a remote desktop connection on a computer. I already opened the ports necessary to do so (3389) and when I go to configure the remote settings through the system in control panel, Remote Desktop isn't there.
    I tried enabling it through editing the registry (even though I knew it wouldn't work) and tried numerous other things in efforts to get it working. No matter what I do, nothing seems to work in enabling the remote desktop options to show up like it does in the next picture.Anything to help get this remote desktop to work would be greatly appreciated.
    This topic first appeared in the Spiceworks Community

    follow this document for Windows 7 backup
    http://windows.microsoft.com/en-us/windows/back-up-programs-system-settings-files#1TC=windows-7
    how much space at target volume? external HDD? USB pen drive?
    i suggest using external HDD, USB pen drive will takes forever
    or you can also try using 3rd party application, but its our own risk and fully support comes from manufactured

  • Enabling remote desktop access to a simple windows 2012 datacenter edition server

    Hi,
    I am a complete noob to server administration. I installed a windows 2012 server initially as a workgroup. All i need is to enable a user to remotely access my server(using remote desktop). The firewall that I use is Gibraltar.
    I read that to enable remote desktop services my server has to be part of a domain. So i promoted my server to a domain name controller. Using active directoty I added a user to the domain. I also read that to make remote desktop more secure, I have to request
    the user to login through a VPN. 
    Now here is where I am completely lost. Do i really need to move my server to a domain, if the user just wants access to this server and nothing else? Should i restrict remote desktop access only through VPN
    and if so, how can i do that? Further, the server dashboard gives me notifications about 'remote desktop licensing' not configured. We got the software as a campus licensing and I am not sure how to configure the remote license server. Any opinions are highly
    appreciated.

    If you're just trying to setup this to allow administration access then I don't believe you need it to be a member of a domain. There's a difference between allowing remote desktop access for administration, and setting up full terminal services access for
    multiple users. The latter requires a lot more work and licensing unlike the former.
    To simply allow admin access, open an explorer window and right click on Computer, then select properties. In the System window that appears, click Remote settings on the left. Now in the bottom half of the window select "Allow remote connections to this
    computer" and leave the option requiring NLA in place. Click Select Users..., you'll see that the administrator user already has permissions to connect, so if you're only planning to connect with that then you're finished, otherwise find those users you
    want to grant access.

  • Can I use Remote Desktop Connection (windows server 2008) even if no user is logged in?

    I'm configuring a Server, running Windows Server 2008, to be accessed remotely. Suppose no user is logged in in the server (if it was just turned
    on, for instance). Can I use the "Remote Desktop Connection" feature to log in remotely in this case? Or is it always necessary to have a user locally logged in, to remotely log in to one of the users available?

    If its a fresh installation, RDM might not work at first.
    1. You need to check firewall and allow Remote Desktop. To be specific, communication to port 3389 TCP
    2. Right click My Computer --> Properties --> Remote tab
    Enable Remote Desktop
    Allow connections to this computer
    Click users and grant the permissions for the users. By default, Administrators do have the permission. An also, the users who are members of the 'Remote Desktop Users' security group also have the permission

  • Do I have to buy remote desktop for all the computers I want to access?

    I am trying to figure out if when I download the Remote Desktop for my laptop how do I then connect to my studio PC. Do I need to pay th 79 dollars again to hav the app running on the other computer?

    You only install the Apple Remote Desktop app on a computer from which you want to do the controlling and management. You don't install it on the client systems. But the license for apps from the Mac App Store say that for personal use, you can install an app on all computers you own or control.
    Note that if by "studio PC: you mean that your other computer is a Windows system, ARD won't install on it in any case, and won't even control it without you installing VNC on the Windows system.
    Regards.

  • Microsoft Remote Desktop for Mac and Win 2000 Server

    Hello guys,
    Could you please confirm that the latest version 8.0.15 is compatible with WIN 2000 Server connections? If not, could you please advise which version of Microsoft Remote Desktop for Mac is the match in order to connect to a WIN 2000 server.
    Thank you in advance,
    Bogdan

    Hello Bogdan
    WIN 2000 is supported. See a complete list of supported Windows SKUs here:
    https://technet.microsoft.com/en-us/library/dn473006.aspx
    Go to the AppStore and download Microsoft Remote Desktop.

  • Enable Remote Desktop Connections with PowerShell

    What is the easiest way to enable remote desktop connections on Windows 7, with powershell?

    Use Shay Levy's "Remote Registry PowerShell Module", and modify the value of the "fDenyTSConnection" value in the
    key "HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server" on the remote box to "0"
    The Windows 7 box will need to be rebooted before it will take effect.
    See http://oreilly.com/windows/archive/server-hacks-remote-desktop.html
    Or, grab Michal Gajda's script "Enable-RDP.ps1" in the gallery :)
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer
    My Blog: http://unlockpowershell.wordpress.com
    My Book:
    Windows PowerShell 2.0 Bible
    My E-mail: -join ("6B61726C6D69747363686B65406D742E6E6574"-split"(?<=\G.{2})",19|%{[char][int]"0x$_"})

  • Remote Desktop for OS X 10.6.8

    My Hard Drive went on my mac and after replacing it and reinstalling OS X 10.6.8 I cannot download Remote Desktop from the app store, it says I need at least OS X 10.7. I use to have Remote Desktop from the app store before I had to replace my hard drive.
    Does anyone know where I can download remote desktop for OS X 10.6.8? I already have the remote desktop that is included with Office 2011 but I want the one off the app store. I believe that the last version of the app store one to support OS X 10.6.8 was
    version 8.0.4... but don't quote me on that.
    Thanks!

    Hi,
    Thank you for posting in Windows Server Forum.
    I am afraid to inform you that there is no supported version of MRD for MAC 10.6.8 to download. You need to upgrade the MAC to 10.7 or 10.8 and then only you can take the benefit of new version. 
    https://itunes.apple.com/in/app/microsoft-remote-desktop/id715768417?mt=12
    Thanks for your understanding and Support!
    Regards.
    Dharmesh Solanki
    TechNet Community Support

  • How to enable remote debugging for a session other than the current one

    Hi all,
    I am trying to figure out how to enable remote debugging for a session other than the one I am currently using.
    More specifically, we have an application that is making database calls to Oracle 11gR2. Something is causing an exception during this invocation. My system is currently not set up to recompile said application, so I can't just add the debug call to the code and recompile. Therefore I would like to be able to log into the database (as sys, if necessary) and invoke dbms_debug_jdwp.connect_tcp on the desired session.
    The docs indicate that I should be able to do so:
    dbms_debug_jdwp.connect_tcp(
    host IN VARCHAR2,
    port IN VARCHAR2,
    session_id IN PLS_INTEGER := NULL,
    session_serial IN PLS_INTEGER := NULL,
    debug_role IN VARCHAR2 := NULL,
    debug_role_pwd IN VARCHAR2 := NULL,
    option_flags IN PLS_INTEGER := 0,
    extensions_cmd_set IN PLS_INTEGER := 128);
    But when I try (even as sys), I get the following:
    exec dbms_debug_jdwp.connect_tcp('1.2.3.4',5678,<session id>,<session serial>);ORA-00022: invalid session ID; access denied
    ORA-06512: at "SYS.DBMS_DEBUG_JDWP", line 68
    ORA-06512: at line 1
    00022. 00000 - "invalid session ID; access denied"
    *Cause:    Either the session specified does not exist or the caller
    does not have the privilege to access it.
    *Action:   Specify a valid session ID that you have privilege to access,
    that is either you own it or you have the CHANGE_USER privilege.
    I've tried granting the 'BECOME USER' privilege for the relevant users, but that didn't help. I read something about having to set some kind of ACL as of 11gR1, but the reference documentation was very confusing.
    Would someone be able to point me in the right direction? Is this even possible, or did I misread the documentation?

    Interesting deduction, that would be very useful indeed. I hate recompiling just to add the debug call, and it can't be done in our production environment. But it seems unlikely to me it would be implemented this way.
    I would cross-post this in the SQL AND PL/SQL forum though, as this is really a database issue, not with the SQL Developer tool. Do add the links to the other posts in each.
    Regards,
    K.

  • Ctrl+Alt+End in Remote Desktop Running Windows XP with VMWare Fusion

    I am using remote desktop on Windows XP in a VMWare virtual machine on my MacBook Pro. When the remote computer I'm connecting to times out and locks the screen, I need to send ctrlaltend to get back to the login dialog to unlock the screen (ctrlaltdel gets processed by the local windows box and never passed through so ctrlaltend is the appropriate sequence in remote desktop). Only one problem ... my MacBook Pro keyboard doesn't have an End key (or any other key that maps to it as far as I can tell) ... neither does the bluetooth wireless keyboard I use. So how do I send ctrlaltend? Anybody else run into this and find a satisfactory solution short of disconnecting remote desktop and logging in all over again?

    That's weird.. I use RDC on my Vista's VM all the time and Ive never encountered this issue.
    Try running the RDC in full screen, so that the Ctrl-Alt-Del will go to the RDC.
    You can close the RDC window, and change the Options "Send Windows Combination Key" either to the RDC or the VM, or while the RDC in full screen.

  • How enable remote desktop gateway manager server 2012 essentials

    how enable remote desktop gateway manager

    There is a DISM command,
    dism /online /disable-feature:Gateway-UI
    http://support.microsoft.com/kb/2472211/en-us
    Robert Pearman SBS MVP
    itauthority.co.uk |
    Title(Required)
    Facebook |
    Twitter |
    Linked in |
    Google+

  • Remote desktop to windows using vpn

    I am unable to remote desktop my window based office pc from my mac book pro using VPN.
    I even tried to install rdp , but no luck.Please respond asap.Thanks.

    Try TSclientX. I got so sick and tired of MS RDP and the license crap. I mean, it comes bundled with Office, and still stops working every few weeks.
    TSclientX  just works.

  • Unable to enable remote desktop (XDMCP) after jumpstart Solaris 10 U9

    Hi,
    I have installed Solaris 10 U9 using the jumpstart.
    I would like to have enabled remote desktop (XDMCP) after installation.
    But Solaris 10 U9 has this option disabled:
    # ps -ef | grep dt
    root 858 450 0 04:56:05 console 0:00 grep dt
    root 730 1 0 04:41:39 ? 0:00 /usr/dt/bin/dtlogin -daemon -udpPort 0
    I have copied dt config files to /etc:
    # mkdir /etc/dt/config
    # cp -r /usr/dt/config/* /etc/dt/config/.
    Then in /etc/dt/config/Xconfig I've uncommented and added port number:
    Dtlogin.requestPort: 177
    After reboot this change in Xconfig doesn't enable XDMCP.
    Do you know what to change to have XDMCP enabled after jumpstart installation?
    Thanks,
    Daniel

    By default xdmcp will start on udp port 0. normally it should listen on 177.
    Try this. you should be able to login through xdmcp after this.
    #svccfg -s cde-login setprop 'dtlogin/args=""'
    #svcadm restart cde-login

Maybe you are looking for

  • IMac 600mhz will not sleep, nor allow dbl-click open

    I've got a stubborn little slot-loading iMac 600mhz here, running OS 9.2.1. It arrived from my friend with what seemed to be a dead PRAM battery and these two issues: 1. it will not go to sleep automatically, no matter how the energy saver control pa

  • Pop_up window with a check box

    Hi Gurus, iam having requirement to display a popup window with two message texts and with a message followed by a check box. i have tried with all the function modules starting with popup_* but iam not able to find the exact one. please suggest me a

  • My updater shows only the restore button

    i downloaded the old updater again because it doesnt work with the itunes 7 etc. i have now the updater 28.06.2006 it only shows the restore button.. i clicked to it.. it restores my ipod.. and says that i should wait for a while.. and then it shows

  • Regarding Direct Load or Direct Path Load

    Why Direct Load and Direct Path Load is faster? In which situation Direct Load, Direct Path Load are faster?

  • Help with making DVD from quicktime movie

    I just made a dvd using IDVD of my FCE sequence. I selected make dvd from movie. The FCE sequence was comprised of two parts. The first part of the time line was a sequence I imported as a quicktime movie and the remaining time line was the edited se