Tagged Questions
The appcmd tag has no wiki summary.
12
votes
3answers
7k views
How to assign a SSL Certificate to IIS7 Site from Command Prompt
Can you advise me whether it is possible or not to assign a SSL Certificate to a website in IIS7 using the APPCMD application?
I am familiar with the command to set the HTTPS Binding
appcmd set site ...
7
votes
3answers
2k views
How do you change the allowDefinition section attribute using appcmd in IIS 7?
Is it possible to use appcmd to change the value of allowDefinition? Specifically I'm try to enable changes to the httpCompression module at the application level.
Modifying the ...
5
votes
1answer
3k views
change physical path for virtual directory or site in IIS using command line for IIs6 or IIs7
I need to implement some versioning for deployment for the app I support where I can copy the site to say c:\inetpub\wwwroot\app_v2 and then switch the virtual directory from ...
3
votes
4answers
8k views
Run Command as administrator in PowerShell script. UAC
OK here is my issue:
I am trying to run a script remotely on a server.
I am an administrator on both boxes, firewall exceptions are in place, remote admin is enabled, and everything else looks ...
2
votes
2answers
189 views
Can I use PowerShell instead of AppCmd.exe to monitor IIS state?
I want to write a script that uses appcmd.exe to monitor IIS state -
restart a site if it's down and/or restart IIS if it's down.
Can this be done with powershell? is there a more natural/easier ...
2
votes
2answers
242 views
Stop a web site hosted with IIS Express from command line
I'm working on a web solution in Visual Studio 2010 that is using IIS Express to host the application. I want the build process to copy the output DLLs from some of the projects into a directory ...
2
votes
1answer
603 views
Associate an application pool to site with appcmd
I want create a site by command line using appcmd.
How can I associate a specific application pool to site?
To create a site, I write in this way:
appcmd add site /name:"prova" ...
2
votes
1answer
839 views
Determining if a Powershell command was successful
Hi I am quite new to Powershell but I have one niggling question. I want to be able to tell if a command has completed successfully so I can give meaningful messages to host.
I am using the appcmd ...
2
votes
1answer
433 views
How do I use IIS6 style metabase paths in IIS7 AppCmd tool?
I'm currently in the process of upgrading old II6 automation scripts that use the IISVdir tool to create/modify/update apps and virtual directories, and replacing them with AppCmd for IIS7.
The IIS6, ...
2
votes
1answer
817 views
How do I reference a site by ID using IIS7 APPCMD?
I know how to reference a site by name to stop and start it? For example:
appcmd stop site /site.name:"Microsoft SharePoint Administration"
How do I reference a site using its IIS ID? I tried these ...
1
vote
1answer
34 views
Use AppCmd to LIST CONFIG in APPHOST only
I have a requirement to use powershell to configure IIS7.5 on WebApplications that have not yet had code deployed (possibly at all, possibly old/broken web.configs exist) to the file system. I would ...
1
vote
1answer
48 views
appcmd.exe 'set' and 'list' commands for service authentication issue
Sorry about the non-descriptive title; Had no Idea how to put it. So when I run the following code in command prompt
%systemroot%\system32\inetsrv\appcmd.exe list config "Default Web ...
1
vote
1answer
121 views
How to loop in powershell until successful?
%WINDIR%\system32\inetsrv\appcmd.exe set site /site.name:"WebRole_IN_0_CB" /[Path='/'].applicationPool:"ASP.NET v4.0" >>CBLog.log
powershell.exe -command Set-ExecutionPolicy Unrestricted
...
1
vote
2answers
115 views
Azure: How to execute a startup task delayed?
I have two Sites within my WebRole and have defined a Startup task.
The first line works fine, it creates a new App pool for me:
%WINDIR%\system32\inetsrv\appcmd.exe add apppool /name:"VCPool" ...
1
vote
0answers
61 views
Precompile ASP.NET Application after Installation
I have an ASP.NET Application compiled into installation package using INNO Setup installer. When I install an application to the dedicated server I want to precompile the whole application so it runs ...
1
vote
2answers
100 views
C# process with an input and output file
When creating a new process you can give some StartInfo with it before you start the process.
But how would one give the input of/output to parameter.
the output to is achievable through a ...
1
vote
1answer
833 views
Renaming applications in IIS 7.0
It's generally known that you are not allowed to edit the application alias while editing application settings through window interface of IIS Manager. The alias of an application has the gray color ...
1
vote
3answers
614 views
How do I create websites on remote servers using appcmd?
I have used appcmd to create websites on my local computer. There doesn't appear to be a server parameter which means that i have to remote desktop on to each machine that i'm deploying to and run the ...
1
vote
1answer
176 views
Use appcmd to list files/folders with windows authentication in IIS7
is there any way to use Use appcmd to list all of the files/folders with windows authentication set in IIS7?
Cheers
Batesy
1
vote
1answer
971 views
AppCmd: Framework vs Framework64
I have a batch of new server getting installed and I'm finally trying to automate as much of at process as possible. Part of that includes making some changes to machine.config, like setting ...
1
vote
0answers
344 views
IIS appcmd on Windows Server 2003?
For IIS 7.0 on Windows Server 2003, any tools like appcmd for IIS 7.0 with Windows Server 2008? I did not find such command on Windows Server 2003.
thanks in advance,
George
1
vote
1answer
438 views
How to use appcmd to set debug=false in IIS7
I'm trying to use APPCMD to set debug=false in web.config, per the documentation.
The specific syntax I am using is:
APPCMD SET CONFIG "SITE/VDIR" section:compilation /debug:False /commit:APP
...
0
votes
0answers
8 views
How to cmd Windows Authentication enable true ?
i used to appcmd add IIS application and I want to do Windows authentication same line enable true
add application:
C:\Windows\System32\inetsrv>appcmd add app /site.name:"Default Web Site" ...
0
votes
0answers
10 views
appcmd setting request restriction property
What parameters do I need to pass to appcmd.exe to set this particular IIS configuration property?
0
votes
1answer
76 views
appcmd code in C#?
I have an web serivce that run's this:
var Proc = new Process();
Proc.StartInfo.FileName = CredentialBatFile;
Proc.StartInfo.Arguments = WebSiteName + " " + ...
0
votes
1answer
30 views
CFExecute not executing appcmd.exe
I created the following code on a Cofdfusion server: file name: testWebsite.cfm
<cfoutput>
<cfset exec_command = "add site /name:""demosite"" /bindings:http://demosite.testserver.com:80 ...
0
votes
1answer
70 views
How to create an application pool with appcmd?
I have figured out I could associate an existing application pool with an existing site like this:
APPCMD.exe set app "sitename/" /applicationPool:"appPoolName"
But how do I create my own ...
0
votes
0answers
50 views
IIS7 appcmd ftp write permissions
We are upgrading from IIS6 to IIS7.
Currently we programatically add virtual directories beneath the Default FTP Site in IIS 6.
We set the Virtual Dir to a specific username and also add the same ...
0
votes
0answers
115 views
Adding Website and FTP into IIS 7 via script
We are in the process of moving over 100 domains over to a new server. I have created a script that will allow adding a Website entry and FTP entry into IIS 7 using a simple BAT file. I found several ...
0
votes
0answers
92 views
appcmd.exe to add/change mime type for a subdirectory of a website
I read from this link to add mime for IIS 7
appcmd set config /section:staticContent /+"[fileExtension=' .xyz ',mimeType=' application/octet-stream ']"
But if I want to apply the mime settings ...
0
votes
1answer
143 views
List all virtual directory redirects in an IIS site
I need a list of all redirect URLs which have been created with virtual directories in IIS 7.5.
Presumably using appcmd, ideally outputing something like:
/foo http://example.com/blah
/bar ...
0
votes
1answer
322 views
Deploying WCF - Need to Set the Host Headers on an SSL Site
Using Visual Studio 2010 / .NET 4.0
I've been at this for hours but I'll try to be specific.
I'm deploying a WCF 4.0 Service to IIS 7. It works fine under http. I can add a service reference from ...
0
votes
1answer
119 views
Having trouble with the format of a custom action in WIX
I am trying to configure APICGIRestriction using APPCMD in WIX.
The compiler throws an error saying "INvalid Format". When I try this command on the server directly, it works fine.
Any ideas?
I ...
0
votes
1answer
229 views
Why does the page posts take so long?
I am having some problems with some page post backs that take a loooong time to execute.
If I do a "appcmd list requests" I can get something like this:
REQUEST "79000001800004e3" (url:POST ...
0
votes
2answers
3k views
How do I change the physical path of web site in IIS7 with APPCMD?
I need to change the physical path of a web site through the command line via the appcmd.exe tool, but I can't figure out the syntax. Can someone help?
0
votes
1answer
830 views
using appcmd to add new web site issue
I am using VSTS 2008 + C# + .Net 3.5 + IIS 7.0. I want to using appcmd to add a new web site, my scenario is like this.
All my web site files are under folder c:\template;
I want to add my new web ...