IIS covers the IT solutions to the issues come across now and then in a company IT infrastructure including Operating system, Softwares, Scriptings, securities and reviews.
Wednesday, 11 December 2013
Sunday, 17 November 2013
Symantec manual scan using command line.
Run the command.
"C:\Program Files (x86)\Symantec\Symantec Endpoint Protection\DoScan.exe" /ScanName "Weekly Scan"
"C:\Program Files (x86)\Symantec\Symantec Endpoint Protection\DoScan.exe" /ScanName "Weekly Scan"
Access blocked websites in Office
First one has to find the IP address of the computer on which all websites are allowed. Just note down the IP address and use enter in your computer and then see if you can access all websites. Also do not forget to create the batch file for this because once the person who had that IP address will switch on his system your IP address will conflict with him and niether you nor he will able to access internet and eventually IT persona will try to find the solution for this so the best way is to find someones computer which stays switched off most of the times.
I have made one batch file for changing the IP address which will help you to change the address in seconds.
Below batch file is for configuring the static IP address whenever is required.
One may change the bold text as per his/her environment.
Start
@ECHO off
cls
:start
ECHO.
ECHO 1. Static
ECHO 2. DHCP
set /p choice=Type the Choice:
rem if not '%choice%'=='' set choice=%choice:~0;1% ( don`t use this command, because it takes only first digit in the case you type more digits. After that for example choice 23455666 is choice 2 and you get "bye"
if not '%choice%'=='' ECHO "%choice%" is not valid please try again
if '%choice%'=='1' goto Static
if '%choice%'=='2' goto DHCP
ECHO.
goto start
:Static
netsh interface ip set address "Local Area Connection" static 10.10.10.2 255.255.255.0 10.10.10.1 1
goto end
:DHCP
netsh interface ip set address "Local Area Connection" dhcp
goto end
:end
pause
exit
Finish
Regards, IIS
Finish
Regards, IIS
Install Windows 8/7/XP over network.
Today, We'll discuss about how to capture full windows image to deploy over the network. This I believe is one of the best way to prepare the machine in less time and also one has to not bother about after windows installation as these software are the part of same image.However in order to start this command one has to go through the following steps.
1. Boot the machine over the network and wait till he gets the command prompt.
2. Map the shared location where ghost32.exe and your windows image exist so that you can access the utility over the network itself.
3. Get your command prompt to the map drive and run below command.
1. Boot the machine over the network and wait till he gets the command prompt.
2. Map the shared location where ghost32.exe and your windows image exist so that you can access the utility over the network itself.
3. Get your command prompt to the map drive and run below command.
ghost32.exe -sure -clone,Mode=restore,DST=1,SRC=I:\imagename.gho
like above I have mapped I drive as shared drive where ghost32.exe and image saved.
Regards, IIS
like above I have mapped I drive as shared drive where ghost32.exe and image saved.
Regards, IIS
Capture windows image using Symantec ghost command.
Capture windows image using Symantec ghost command.
ghost32.exe -sure -clone, Mode=create,SRC=1,DST=I:\image.gho
ghost32.exe -sure -clone, Mode=create,SRC=1,DST=I:\image.gho
Subscribe to:
Posts (Atom)
-
Windows 8 addresses the spinning issue by implementing a smart approach. The developers have ensured that the operating system will not re...
-
In the recent days where everybody tries to access everything through Internet forget that the way we can not trust every person we meet si...
-
Hi, A user raised the issue in IT stating that she is having issues in typing apostrophe key. One of my colleague went to check the issue. I...