Trying to install IIS Powershell snap-in

Installed Powershell 4.0 on our Win2008 servers.   Wanting to install IIS powershell snap-in to help automate IIS management.
Went to this URL:
http://www.microsoft.com/web/gallery/install.aspx?appsxml=&appid=IISPowershellSnapin%3bIISPowershellSnapin
This launches the Web Platform Installer (4.6) which subsequently says:
Microsoft Web Platform installer couldn't find the product you tried to install.  
How do you download/install the IIS Powershell snapin?
Powershell 4.0
Windows Server 2008 

When you get to that message prompt in the WPI, type IIS in the search box in the upper right and hit Enter.  Click the Add button next to IIS: Management Scripts and Tools, and IIS Manager for Remote Administration v1.2.  I'm not positive which
one is needed because I tried both before actually trying to import the webadministration module, but one of the two definitely worked.  
That installer seems really dysfunctional.  The exe I downloaded said IISPowershellSnapin but then that component isn't installed by default and you have dozens and dozens of unrelated products that are available.  Not to mention that the IIS Manager
for Remote Admin failed to successfully download and install completely for me....
I hope this post has helped!

Similar Messages

  • Unable to install iis manager on windows 8 home edition

    Hi
    I get an error while trying to install IIS manager from "Turn on off windows features" on a windows 8 machine. Just before trying to install this I install Visual Studio community online and rebooted my machine. Visual Studio works fine. 
    I also made sure all updates are installed on my machine and also rebooted and tried installing IIS manager.
    The error that I get is "The function attempted to use a name that is reserved for use by another transaction"
    Update: Not just IIS. Anything I try to install from turn on off windows feature I get the same issue.
    Thanks
    Ranjith

    Hi Ranjith,
    Considering this issue occurs with all the features ,pleas run “dism /online /cleanup-image /restorehealth” to have a health scan.
    As an alternative choice ,we can try to enable feature with the dism command to have a check  :
    Here is a link for reference :
    Adding features with DISM
    http://blogs.technet.com/b/joscon/archive/2010/08/26/adding-features-with-dism.aspx
    I have made a deep research ,“The function attempted to use a name that is reserved for use by another transaction” is seems to be caused by the third party conflict .Please perform a clean boot to have a check .If that is the issue ,we can have a troubleshoot
    with dichotomy to find out the culprit.
    Here is a link for reference of clean boot :
    How to perform a clean boot in Windows
    http://support.microsoft.com/kb/929135
    Here are several links for reference:
    Anyone Having Trouble with Windows Update KB2770917?( Pay attention to Andre.Ziegler`s analysis )
    https://social.technet.microsoft.com/Forums/windows/en-US/64f1c53f-f63f-447e-bdcc-58d9b47b2f2e/anyone-having-trouble-with-windows-update-kb2770917?forum=w8itprogeneral
    failure configuring windows update reverting changes in windows 7 64 pit professional(Pay attention to Andre.Ziegler`s analysis)
    https://social.technet.microsoft.com/Forums/sqlserver/en-US/a839fb16-042d-4746-b5ad-9dbaa19fbd66/failure-configuring-windows-update-reverting-changes-in-windows-7-64-pit-professional?forum=w7itprogeneral
    Best regards

  • Cert error when trying to install WMF 4.0

    We have two different Servers both running Server 2012 and are fully patched. When trying to install WMF/Powershell 4 we get the following error:
    One Server has TFS Server 2012  Installed(Server1). The other one has TFS Server 2013 Installed(Server2). Both have SQL Server 2012 SP1 installed.
    Server1 has 3.5 & 4.5 framework installed. Server2 has framework 3.5 & 4.5.1 installed. I've tried downloading the installer multiple times with multiple browsers (thinking it got corrupted) but no go. Searching around i tried a few things....adding
    WIF 3.5 but nothing has worked.

    Hi,
    Please have a try with command :
    wuauclt /resetauthorization /detectnow
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. Regards, Jun Zh - MSFT
    Microsoft Online Community Support

  • The Windows PowerShell snap-in 'Microsoft.Exchange.Management.PowerShell.Admin' is not installed on this computer

    hi all,
    i am using Exchange server 2013.
    when i run the below code i got the following error.
    RunspaceConfiguration rsConfig = RunspaceConfiguration.Create();
    PSSnapInException snapInException = null;
    PSSnapInInfo info = rsConfig.AddPSSnapIn("Microsoft.Exchange.Management.PowerShell.Admin", out snapInException);
    Runspace myRunSpace = RunspaceFactory.CreateRunspace(rsConfig);
    myRunSpace.Open();
    Pipeline pipeLine = myRunSpace.CreatePipeline();
    Command myCommand = new Command("Get-Mailbox -ResultSize Unlimited");
    pipeLine.Commands.Add(myCommand);
    Collection<PSObject> commandResults = pipeLine.Invoke();
    Error :
    The Windows PowerShell snap-in 'Microsoft.Exchange.Management.PowerShell.Admin' is not installed on this computer.
    when i run the command  get-pssnapin
    result : 
    Name : Microsoft.PowerShell.Core
    PSVersion : 3.0
    Description : This Windows PowerShell snap-in contains cmdlets used to manage components of Windows PowerShell
    when i run below  command 
    get-pssnapin -registered
    result is:
    PS C:\Users\Administrator> get-pssnapin -registered
    Name : EnginePSSnapin
    PSVersion : 2.0
    Description : Register cmdlets for Content Engine
    Name : HostControllerPSSnapIn
    PSVersion : 2.0
    Description : Register cmdlets for Host Controller
    Name : InteractionEnginePSSnapIn
    PSVersion : 2.0
    Description : Register cmdlets for InteractionEngine
    Name : JunoPSSnapin
    PSVersion : 2.0
    Description : Register cmdlets for Juno
    Name : Microsoft.Exchange.Management.PowerShell.E2010
    PSVersion : 1.0
    Description : Admin Tasks for the Exchange Server
    Name : Microsoft.Exchange.Management.PowerShell.Setup
    PSVersion : 1.0
    Description : Setup Tasks for the Exchange Server
    Name : Microsoft.Exchange.Management.PowerShell.SnapIn
    PSVersion : 1.0
    Description : Admin Tasks for the Exchange Server
    Name : Microsoft.Exchange.Management.Powershell.Support
    PSVersion : 1.0
    Description : Support Tasks for the Exchange Server
    Name : Microsoft.Forefront.Filtering.Management.PowerShell
    PSVersion : 2.0
    Description : Microsoft Forefront Filtering PowerShell Interface
    Name : SearchCorePSSnapIn
    PSVersion : 2.0
    Description : Register cmdlets for SearchCore
    Name : WDeploySnapin3.0
    PSVersion : 2.0
    Description : This is a PowerShell snap-in that contains cmdlets for managing Microsoft Web Deployment infrastructure
    All powershell commands is installed fine .
    but still I am getting error
    The Windows PowerShell snap-in 'Microsoft.Exchange.Management.PowerShell.Admin' is not installed on this computer
     

    Hi Olaf Reitz,
    After running the command still i am getting same error,
    The Windows PowerShell snap-in 'Microsoft.Exchange.Management.PowerShell.SnapIn' is not installed on this computer
    please see below my task and i achieved so far.
    i need to get list of Users in C# from Exchange Server. for that i  created new User [[email protected]]
    in Exchange Server , then i give Full Access Permissions to that User to Access all other Mail Boxes.
    By giving below command in PowerShell  I am getting all Users List . 
    Get-Mailbox -ResultSize Unlimited
    i need the same list In C# code. for that I
    tried with below code.
     Here i got only particular user [ [email protected]] details , instead of list.
    SecureString secureString = new SecureString();
    string myPassword = "EIS2014!@#"; string username = "[email protected]";
    foreach (char c in myPassword)
    secureString.AppendChar(c);
    PSCredential ExchangeCredentials = new PSCredential(username, secureString);
    WSManConnectionInfo connectionInfo = new WSManConnectionInfo(new Uri("http://ExchangeServer.admin.com/powershell ), "http://schemas.microsoft.com/powershell/Microsoft.Exchange , ExchangeCredentials);
    Runspace runspace = System.Management.Automation.Runspaces.RunspaceFactory.CreateRunspace(connectionInfo);
    runspace.Open();
    string newCommand = "Get-Mailbox | Get-MailboxPermission";
    Pipeline cmd = runspace.CreatePipeline(newCommand);
    Collection<PSObject> results = cmd.Invoke();
    runspace.Close();
    so , i changed the code below
    RunspaceConfiguration rsConfig = RunspaceConfiguration.Create();
    PSSnapInException snapInException = null;
    PSSnapInInfo info = rsConfig.AddPSSnapIn("Microsoft.Exchange.Management.PowerShell.SnapIn", out snapInException);
    Runspace myRunSpace = RunspaceFactory.CreateRunspace(rsConfig);
    myRunSpace.Open();
    Pipeline pipeLine = myRunSpace.CreatePipeline();
    Command myCommand = new Command("Get-Mailbox -ResultSize Unlimited");
    pipeLine.Commands.Add(myCommand);
    Collection<PSObject> commandResults = pipeLine.Invoke();
    i need Users list In C# , how can i achieve this ?
    i am getting list in PowerShell , but i need it in C# code. 
    Is Visual studio Compiled code  be 64 bit for running PowerShell scripts  ? 

  • Frustrations Trying to Install CF 9 on Windows 7/IIS 7

    I am trying to install CF 9 (as a Developer Install) on Windows 7 Pro/32-bit and am going crazy.
    My box is running IIS7 and the CF install goes OK (I have it set to configure for all IIS sites). When I try to launch Administrator at the end of the install I get an Error 404 saying that index.cfm cannot be found (URL is http://127.0.0.1/CFIDE/administrator/index.cfm). The file is there, I can see it.
    I've followed some posts on the Internet regarding installing ISAPI extensions and IIS6 Management. When I use the "Web Server Configuration Tool" I can configure the IIS Default Web Site without issue. Nevertheless, when I try to lauch CF Administrator after exiting the Configuration Utility I get the same error.
    Are there any settings or pointers anyone can give as to how to get this working (I've already installed Adobe Flash Builder and ColdFusion Builder and I'd like to get this going).
    Thanks in advance.

    Yup, that did it.
    I actually had been made aware of the patch when I downloaded CF, but for some reason I thought it was difficult to install (I thought that you could only use the installer package if you could open Administrator). IAC I downloaded the appropriate patch file, ran it and Administrator ran. There was something in the install notes about reconfiguring the websites and removing the IIS6 Management feature but I'm not going to fool with anything because right now at least CF is running.
    Thanks.

  • Trying to install cf10 on Windows 7, error Cannot configure IIS connector

    Trying to do a brand new install of CF10 on Win 7.
    As soon as I tell it to use all IIS websites, it bombs telling me to Ebable the required options under ASP.NET, CGI, ISAPI extensions. 
    Clearly IIS did not install correctly under Windows. 
    Tried uninstalling IIS, reinstalling. No dice.
    Or is this indeed a CF10 problem?

    Hi,
    Please ensure all of these IIS features are enabled:
    ASP.NET
    CGI
    ISAPI Extensions
    ISAPI Filters
    The above options can be installed, by following the steps mentioned under Installing IIS Features on Windows 7 at http://msdn.microsoft.com/en-us/library/hh167503(v=nav.70).aspx
    Regards,
    Anit Kumar

  • I can't run powershell to install IIS and Application server... whats going on here?

    PS C:\Windows\system32> Add-WindowsFeature -Name Application-Server,AS-Web-Support,Web-Common-Http,Web-ASP,Web-Includes,
    Web-CGI,Web-Asp-Net,Web-Net-Ext,Web-ISAPI-Ext,Web-ISAPI-Filter,Web-Http-Logging,Web-Request-Monitor,Web-Basic-Auth,Web-W
    indows-Auth,Web-Filtering,Web-Performance,Web-Mgmt-Console,Web-Mgmt-Compat,Web-Server,WAS -IncludeAllSubFeature -Source
    wim:D:\sources\install.wim:2
    Add-WindowsFeature : The request to add or remove features on the specified server failed.
    Installation of one or more roles, role services, or features failed.
    The source files could not be downloaded.
    Use the "source" option to specify the location of the files that are required to restore the feature. For more
    information on specifying a source location, see http://go.microsoft.com/fwlink/?LinkId=243077. Error: 0x800f0906
    At line:1 char:1
    + Add-WindowsFeature -Name Application-Server,AS-Web-Support,Web-Common-Http,Web-A ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : InvalidOperation: (@{Vhd=; Credent...Name=localhost}:PSObject) [Install-WindowsFeature],
        Exception
        + FullyQualifiedErrorId : DISMAPI_Error__Cbs_Download_Failure,Microsoft.Windows.ServerManager.Commands.AddWindowsF
       eatureCommand
    Success Restart Needed Exit Code      Feature Result
    False   No             Failed         {}

    "MS Wants us to use powershell AND installation media AND be connected to the internet AND not have a WSUS server... "
    Don't quite understand the rant, but that's okay.
    I look as connectivity to the internet as a last resort - I don't know that I have ever used it and my labs tend to be completely isolated from the internet.  Connectivity to the internet is not a requirement if you are using the -Source parameter. 
    Connectivity to the internet is in lieu of the -Source parameter.  The installation will first check if the files are local - which they are for most cases as they are in the local SXS directory.  If for whatever reason, e.g. they have
    been deleted, the installation will look for an alternate location.  If a -Source parameter is specified, it will look there.  If none is specified, it looks to the internet.
    If you plan on using the -Source parameter, it has to point to something and installation media is handy.  But whenever I have needed it (the only time I have needed it is for .NET 3.5/2.0) I sometimes I use the media.  Sometimes I have simply
    copied the SXS directory from the media and used it without the rest of the media.
    A WSUS server has absolutely nothing to do with this.  A WSUS server does not provide 'connection' to the internet for the machine on which you are trying to install.  Connection to the internet means that you can browse the internet from the machine.
    The post that aperelli pointed you to did have a reply that may be germane.  You don't mention if this is a core installation or a full installation.  One of the options you have chosen in not valid on a core installation.  Since we don't
    know what your environment is, this is a shot in the dark.
    Another point is that there could be some sort of conflict of options chosen.  My personal preference would be to break the installation into smaller steps - maybe even a single feature per PowerShell cmdlet.  I don't think you will see any difference
    in the amount of time it takes.  Then, if there is some sort of an issue, you would know exactly which feature is creating it.
    . : | : . : | : . tim

  • How do I get the new 2013 powershell snap-in

    Is there a way to install just the powershell snap-in for exchange 2013. My group does end user support and needs the tools to create accounts and run our powershell scripts . we don't manage or maintain the server itself.
    In the past we would get the exchange download and during install choose only the management tools which would install the snap-in along with the EMC.
    I understand that the EMC is gone but i still need the snap in and the server install doesn't appear to be readily available for download. I was directed to
    http://www.microsoft.com/en-us/download/details.aspx?id=44022
    which I tried to install there was no option for only the management tools, Someone suggested trying an unattended install with the /roles:t option but that hit a lot of prerequisite problems including trying to update the domain itself.
    All I need is the snap-in is there something I can use to install only that?

    HI AD-Tester,
    For managing and creating account you will need to create and grant admin/management roles to your group:
    http://technet.microsoft.com/en-us/library/dd298183(v=exchg.150).aspx
    Your group then log in to ECP (replacement for Management Console).Logging in to ECP doesnt require anything to be installed,just Internet Explorer or other browsers.
    (Normally ECP link is: https://server.domain.local/ecp )
    For running Exchange powershell,you can use windows powershell ISE then run this:
    $secpasswd = ConvertTo-SecureString "EnterHighlySecurePasswordHere!!!!" -AsPlainText -Force
    $mycreds = New-Object System.Management.Automation.PSCredential ("adm_yourusername", $secpasswd)
    $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri http://exchangeserver.domain.local/PowerShell/ -Authentication Kerberos -Credential $mycreds
    Import-PSSession $Session
    You can either run this directly or open notepad,paste in the code and save it as .ps1 file.
    Then run this file in Windows Powershell ISE.
    You will now be able to execute exchange powershell commands.
    I use this regularly and havent failed so far :)
    Please mark as helpful if you find my contribution useful or as an answer if it does answer your question. That will encourage me - and others - to take time out to help you. Thank you! Off2work

  • Errors when trying to install Service Pack 3 for Exchange 2010

    I have 2 Exchange 2010 servers that are running SP2 and I am trying to install SP3 on both.
    They are installed in a DAG and so I am running the .\StartDAGserverMaintenance.ps1 script before attempting to install SP3.  When attempting to run the SP3 setup I get the following errors:
    Setup cannot continue with the upgrade because the 'powershell' (Machine: P-E10-2.company.com) process (ID: 5296) has open files. Close the process and restart Setup.
    AND
    Install hotfix Microsoft Knowledge Base article 2550886 from http://support.microsoft.com/kb/2550886 to improve Windows Failover Cluster transient communication instability when deploying stretched Database Availability Groups across datacenters.
    I can download the hotfix and apply it but has anyone had any issues with this particular hotfix?  Does anyone have any ideas about the powershell error?
    thanks for your help.

    Hi,
    That hotfix relates to a known issue implementing DAG's across data centres (an issue particularly with Windows failover clustering). As a best practice is should always be installed. Please review the following article, which describes why it should be
    installed:
    http://blogs.technet.com/b/exchange/archive/2011/11/20/recommended-windows-hotfix-for-database-availability-groups-running-windows-server-2008-r2.aspx
    In regards to the open files, as the other poster suggested, there will be another user logged onto the server who has a powershell window open. Ensure all other users are logged off the server before performing the upgrade.
    Best Regards

  • Not able to install IIS on Windows Server 2012

    I am unable to install IIS on Windows Server 2012. I get the error as shown in the below screenshot. Error code is 0x800f0922. I did RestoreHealth but that has not helped. Any help will be appreciated.

    Hi Yogesh,
    Just last week was installing IIS on W12R2 server and got stuck and found easy way of installing this as follow.
    when you start installing IIS and at the last step as i marked on red square confirmation. there you find
    export configuration settings..go to and export it to C drive and open Powershell by right clicking as open as administrator and run this from Powershell and it will install successfully.
    Please let me know if you are facing any issue, since this way it has to work.
    OR if you it already worked let me know or mark as correct.
    Regards
    Raj Navalgund
    ADS/DNS/DHCP/RIS/GROUP POLICY/PowerShell/VMware/Esxi/Storage.

  • Trying to install features and Roles

    OK I've selected my features and Roles. When I run the install from a PXE boot using the Lite Touch Windows PE (x64). The OS installs and reboots and then attempt to run the roles and features install, at which point it dies and return the summary screen
    showing errors. These error are listed below from the ZTIOSRoles log. Close to the bottom of this transaction list is the following.
    <![LOG[Copying source files locally from
    \\WIN-DEPLOY-SRV\DeploymentShare$\Operating Systems\Windows Server 2012 R2 SERVERSTANDARDCORE x64\sources\sxs]LOG]!><time="12:46:55.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1"
    thread="" file="ZTIOSRole">
    I am able to browse to the share and dig down to the directory. I guess at this point my questions are.
    1. Why is it looking to something on the deploymentshare when the fuctionallity is built into windows itself?
    2. What component is ZTIOSRole and how do I find out what it is really looking for?
    Note: This is a 2012 R2 Server and I'm trying to install ... And it fails at the First Role
    File and Storage Services
    ---- File Services
    --------File Server
    --------Data DeDuplication
    Hyper-v
    Role Administration
    ---- Hyper-v Management Tools
    -------- Hyper-v GUI Management Tools
    -------- Hyper-v Module for Windows Powershell
    Windows Server Backup
    Can someone please help
    <![LOG[Microsoft Deployment Toolkit version: 6.2.5019.0]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[The task sequencer log is located at C:\Users\ADMINI~1\AppData\Local\Temp\SMSTSLog\SMSTS.LOG.  For task sequence failures, please consult this log.]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole"
    context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[Roles will be installed.]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[Roles specified in Role:]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[  FileAndStorage-Services]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[  Hyper-V]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[RoleServices specified in RoleService:]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[  File-Services]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[  FS-FileServer]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[  FS-Data-Deduplication]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[Features specified in Feature:]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[  RSAT-Role-Tools]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[  RSAT-AD-Tools]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[  RSAT-Hyper-V-Tools]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[  Hyper-V-Tools]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[  Hyper-V-PowerShell]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[  Windows-Server-Backup]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[No items were specified in variable OptionalOSRoles.]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[No items were specified in variable OptionalOSRoleServices.]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[No items were specified in variable OptionalOSFeatures.]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[ZTI Heartbeat: Processing roles (0% complete]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[Event 41003 sent: ZTI Heartbeat: Processing roles (0% complete]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[Property Parameters is now = -FeatureName FileAndStorage-Services]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread="" file="ZTIOSRole">
    <![LOG[Validating connection to
    \\WIN-DEPLOY-SRV\DeploymentShare$\Operating Systems\Windows Server 2012 R2 SERVERSTANDARDCORE x64]LOG]!><time="12:46:54.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread=""
    file="ZTIOSRole">
    <![LOG[Mapping server share:
    \\WIN-DEPLOY-SRV\DeploymentShare$\Operating Systems\Windows Server 2012 R2 SERVERSTANDARDCORE x64\sources\sxs]LOG]!><time="12:46:55.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1"
    thread="" file="ZTIOSRole">
    <![LOG[ZTI ERROR - Unhandled error returned by ZTIOSRole: Path not found (76)]LOG]!><time="12:47:00.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="3" thread="" file="ZTIOSRole">
    <![LOG[Event 41002 sent: ZTI ERROR - Unhandled error returned by ZTIOSRole: Path not found (76)]LOG]!><time="12:47:00.000+000" date="11-08-2013" component="ZTIOSRole" context="" type="1" thread=""
    file="ZTIOSRole">

    OK I've selected my features and Roles. When I run the install from a PXE boot using the Lite Touch I am able to browse to the share and dig down to the directory. I guess at this point my questions are.
    1. Why is it looking to something on the deploymentshare when the fuctionallity is built into windows itself?
    I think you are incorrect in stating that all functionality is built into Windows. Windows may require the sxs directory contents to install some OS Roles and Features. Does this directory exist in your Deployment Share, and if so does it contain all the files
    synced with your original OS source?
    Keith Garner - keithga.wordpress.com

  • Error: 0x800f0922 when trying to install NFS Server Feature on Windows 2012R2

    I'm trying to install the "Server for NFS" option under the File and Storage Services role on a Windows 2012R2 server, but I keep receiving an 0x800f0922 error. I've tried the install via the GUI and Powershell. I've also tried using the
    DISM utility with different source media for the install, but with the same result.   I ran "SFC /scannow"  to check for any missing files/reg keys but it returned no errors.  Any thoughts?

    Thank you for the help!  I did try the suggested steps, but the issue persisted.  I was able to resolve the issue by removing software on the server that was using the NFS ports needed for successful installation of the native NFS server.  
    In our case it was an optional component of our backup software called"Veeam backup vPower NFS".   There is also a known issue with the Qlogic's SanSurfer software using the NFS ports. 
    There were entries in the System event log that tipped me off:
    Event ID:      7000  The Server for NFS Open RPC (ONCRPC) Portmapper service failed to start due to the following error:
    A device attached to the system is not functioning.
    Event ID:      7001  The Server for NFS Driver service depends on the Server for NFS Open RPC (ONCRPC) Portmapper service which failed to
    start because of the following error:

  • Adds install with Powershell

    I am trying to use powershell to install ADDS.  I have installed a Forest successfully.  When I tried to install a DomainController I get this error:
    Verification of user credential permissions failed. An Active Directory domain controller for the domain "mysite.com" could not be contacted. Ensure that you supplied the correct DNS domain name.
    So then I tried adding this:
    $Username = "Administrator"
    $SecurePassword = ConvertTo-SecureString "@#PaSsWoRd" -Asplaintext -Force
    $credentials = New-Object System.Management.Automation.PSCredential($Username, $SecurePassword)
    Still the same error.

    You might want to start checking that you are pointing to the correct DNS servers, that your DCs A and SRV records are properly registered and that you can do DNS resolution using
    NSlookup:
    http://social.technet.microsoft.com/wiki/contents/articles/29184.nslookup-for-beginners.aspx
    https://support.microsoft.com/en-us/kb/241515?wa=wsignin1.0
    This posting is provided AS IS with no warranties or guarantees , and confers no rights.
    Ahmed MALEK
    My Website Link
    My Linkedin Profile
    My MVP Profile

  • Display values of Microsoft.IIs.PowerShell.Framework.ConfigurationElement in Powershell

    Hi all
    As part of my struggle to write a comprehensive script to deploy web applications to the servers of the company that I work for, I have coded a part of the script which displays the properties of the necessary application pools.  This is shown below:
    Get-Item -Path $POOLPATH | Format-List *
    And it returns information in this form:
    name : DefaultAppPool
    queueLength : 1000
    autoStart : True
    enable32BitAppOnWin64 : False
    managedRuntimeVersion : v4.0
    managedRuntimeLoader : webengine4.dll
    enableConfigurationOverride : True
    managedPipelineMode : Integrated
    CLRConfigFile :
    passAnonymousToken : True
    startMode : OnDemand
    state : Started
    applicationPoolSid : S-1-5-82-3006700770-424185619-1745488364-794895919-4004696415
    processModel : Microsoft.IIs.PowerShell.Framework.ConfigurationElement
    recycling : Microsoft.IIs.PowerShell.Framework.ConfigurationElement
    failure : Microsoft.IIs.PowerShell.Framework.ConfigurationElement
    cpu : Microsoft.IIs.PowerShell.Framework.ConfigurationElement
    workerProcesses : Microsoft.IIs.PowerShell.Framework.ConfigurationElement
    ItemXPath : /system.applicationHost/applicationPools/add[@name='DefaultAppPool']
    PSPath : WebAdministration::\\ITPCWXG4\AppPools\DefaultAppPool
    PSParentPath : WebAdministration::\\ITPCWXG4\AppPools
    PSChildName : DefaultAppPool
    PSDrive : IIS
    PSProvider : WebAdministration
    PSIsContainer : True
    Attributes : {name, queueLength, autoStart, enable32BitAppOnWin64...}
    ChildElements : {processModel, recycling, failure, cpu...}
    ElementTagName : add
    Methods : {Start, Stop, Recycle}
    Schema : Microsoft.IIs.PowerShell.Framework.ConfigurationElementSchema
    My question is, how do I get the information for the properties displaying "Microsoft.IIs.PowerShell.Framework.ConfigurationElement" to show?

    I don't think Get-Item will show that information. Do you have Web Adminisration module installed?
    Then you can try the below
    get-website -name "Default Web Site" | select -ExpandProperty ProcessModel | Select -ExpandProperty Collection
    get-website -name "Default Web Site" | select -ExpandProperty Recycling | Select -ExpandProperty Collection
    Regards Chen V [MCTS SharePoint 2010]

  • Cannot connect to sql server after re installing IIS 6?

    I re installed IIS 6, after the restart i couldn't connect to sql server engine nor seeing it when using browse for me, i was trying to install team foundation server, at first it could see that i have an sql server running after re installing IIS it can't
    see it also. I'm using windows server 2003 SP2. Also i cannot remotely access it after the re installation  

    Just type the IP or name of the server (localhost) and try to connect.. SSRS 2005 requires IIS but how does it relate to SQL Server connection?
    What error are you getting? Make sure that SQL Server is running up.
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

Maybe you are looking for