Hello,
I want to be able to set my websites app pool through powwershell. Right now they're all set to DefaultAppPool. As the picture below shows I want to able to assign the FileCopyService app pool to the FileCopyService website.
Any ideas on how to script this in Powershell Modules ? I don't know if this will be much help but I create the App pool and set the physical path with the following :
New-Item -force $FileCopyService_WebAppPath -physicalPath($webServerSetting.WorkingFolderPath + "\FileCopyService") -type Application
