Magnus Asked: 2012-03-01 06:41:46 +0800 CST2012-03-01 06:41:46 +0800 CST 2012-03-01 06:41:46 +0800 CST How can I install UrlScan on an Azure Web Role? 772 Well, title more or less says it all. Is it possible? azure 1 Answers Voted David Makogon 2012-03-01T08:33:15+08:002012-03-01T08:33:15+08:00 You can use WebPI to install it from a startup script. For instance: cd "%~dp0" md appdata reg add "hku\.default\software\microsoft\windows\currentversion\explorer\user shell folders" /v "Local AppData" /t REG_EXPAND_SZ /d "%~dp0appdata" /f WebPICmdLine.exe /accepteula /Products:UrlScan reg add "hku\.default\software\microsoft\windows\currentversion\explorer\user shell folders" /v "Local AppData" /t REG_EXPAND_SZ /d %%USERPROFILE%%\AppData\Local /f exit /b 0 Note: This script is borrowed from Steve Marx (see original here).
You can use WebPI to install it from a startup script. For instance:
Note: This script is borrowed from Steve Marx (see original here).