Allow Antivirus through static IP

Status
Not open for further replies.

Shinutrk

New Member
Thread author
Jul 16, 2018
1
0
1
India
I want to scan my work computer with HitmanPro, the issue is that hitman pro cant get connected to internet.
I am using a static Ip connection here, i don't think we use any proxy server.
So how can i get it connected to internet?
 
Try to disable, then to enable network adapter. I use this to enable internet.
Code:
sc config Winmgmt start= auto
sc config netprofm start= auto
sc config Wcmsvc start= auto

net start Winmgmt
net start Wcmsvc
net start netprofm

rem Disable adapter with index number 0-5 (most likely all), equals to ipconfig /release
wmic path win32_networkadapter where index=0 call disable
wmic path win32_networkadapter where index=1 call disable
wmic path win32_networkadapter where index=2 call disable
wmic path win32_networkadapter where index=3 call disable
wmic path win32_networkadapter where index=4 call disable
wmic path win32_networkadapter where index=5 call disable

timeout 5

rem Enable adapter with index number 0-5 (most likely all), equals to ipconfig /renew
wmic path win32_networkadapter where index=0 call enable
wmic path win32_networkadapter where index=1 call enable
wmic path win32_networkadapter where index=2 call enable
wmic path win32_networkadapter where index=3 call enable
wmic path win32_networkadapter where index=4 call enable
wmic path win32_networkadapter where index=5 call enable
 
Status
Not open for further replies.