artisticcheese

Untitled

Jan 15th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Configuration IIS
  2. {
  3.     Import-DscResource -ModuleName 'PSDesiredStateConfiguration'
  4.     Import-DSCResource -moduleName 'xWebAdministration'
  5.     node localhost
  6.     {
  7.         xWebApplication PI
  8.         {
  9.             Name = "PI"
  10.             Website = "Default Web Site"
  11.             WebAppPool = 'DefaultAppPool'
  12.             PhysicalPath = 'c:\inetpub\wwwroot\content\'
  13.             Ensure = 'Present'
  14.         }
  15.     }
  16.  
  17. }
  18. IIS -Outputpath .\BasicIIS
  19. Start-DscConfiguration -Wait -Verbose -Path .\BasicIIS -Force
Add Comment
Please, Sign In to add comment