- Reset Audio Mixer.
- Stop IISExpress.
- Stop McAffee Scan.
- Expose IIS Express.
Last active
March 11, 2016 16:56
-
-
Save fcingolani/eea9e045b3c90721f935 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set dt=%date:~6,4%%date:~3,2%%date:~0,2%-%time:~0,2%%time:~3,2%%time:~6,2% | |
cd %UserProfile%\Documents\IISExpress\config\ | |
taskkill /IM iisexpress.exe /F | |
copy applicationhost.config "applicationhost.%dt%.xml" | |
powershell -Command "(gc applicationhost.config) -replace ':localhost', ':*' | sc applicationhost.config" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ECHO Reset Volume Mixer Settings... | |
NET STOP Audiosrv | |
NET STOP AudioEndpointBuilder | |
REG DELETE "HKCU\Software\Microsoft\Internet Explorer\LowRegistry\Audio\PolicyConfig\PropertyStore" /F | |
REG ADD "HKCU\Software\Microsoft\Internet Explorer\LowRegistry\Audio\PolicyConfig\PropertyStore" | |
NET START Audiosrv |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Taskkill /PID iisexpress.exe /F |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
net stop McShield | |
net stop McTaskManager | |
taskkill /F /IM Scan64.exe |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment