2013-07-11 8 views
5

Azureの配備でIPとドメインの制限機能をインストールしたいが、ServerManageCmdが償却されたosバージョン3(Server 2012)を使用しているので、動作しない:Windows Server 2012のAzureスタートアップタスクに機能をインストールする

StartupTask.cmd

@echo off 

@echo Installing "IPv4 Address and Domain Restrictions" feature 
%windir%\System32\ServerManagerCmd.exe -install Web-IP-Security 

@echo Unlocking configuration for "IPv4 Address and Domain Restrictions" feature 
%windir%\system32\inetsrv\AppCmd.exe unlock config -section:system.webServer/security/ipSecurity 

ServiceDefinition.csdef部分

<Startup> 
     <Task commandLine="Startup\StartupTasks.cmd" executionContext="elevated" taskType="simple" /> 
</Startup> 

私はpowershellコマンドを使う必要があると信じていますが、私はここで少し深く考えています。誰もこのコードの2012相当を提供できますか?

答えて

10

家庭で遊ぶ人は、ここに答えがあります!

@echo off 

@echo Installing "IPv4 Address and Domain Restrictions" feature 
powershell -ExecutionPolicy Unrestricted -command "Install-WindowsFeature Web-IP-Security" 

@echo Unlocking configuration for "IPv4 Address and Domain Restrictions" feature 
%windir%\system32\inetsrv\AppCmd.exe unlock config -section:system.webServer/security/ipSecurity 
関連する問題