Skip to main content

Posts

Showing posts from October, 2015

Network Check Before VDI Implemention on Branches

Check you able to ping VDI Server from client device Ping myvdiserver. you need to ping VDI connection server IP. once you able to communicate vdi server check how good communication between client Desktop to VDI Server Try this batch script ========================================================== @echo off set /p host=VDI Server URL: set logfile=Log_%host%.log echo Target Host = %host% >%logfile% for /f "tokens=*" %%A in ('ping %host% -n 1 ') do (echo %%A>>%logfile% && GOTO Ping) :Ping for /f "tokens=* skip=2" %%A in ('ping %host% -n 1 ') do (     echo %date% %time:~0,2%:%time:~3,2%:%time:~6,2% %%A>>%logfile%     echo %date% %time:~0,2%:%time:~3,2%:%time:~6,2% %%A     timeout 1 >NUL     GOTO Ping) ========================================================= Create batch file and run it. you will see command prompt open as shown below. Enter Connection server IP or FQDN and Enter It wi

Windows Command Line

Runas is a very useful command on Windows OS. This command enables one to run a command in the context of another user account. Run a program from another user account The command to launch a program using another user credentials is given below. runas /user:domainname\username program For example, if you want to open registry editor as administrator of the computer, the command would be as below. runas /user:administrator regedit After running the above command, you will be asked to enter the password of administrator account. After password validation, registry editor will be opened with the administrator account credentials. To specify arguments to the program If you need to provide arguments to the program that need to be invoked as another user, you can put the program name and the parameters in double quotes. runas /user:username "program argument1 argument2 ..." For example to open the file C:\boot.ini as administrator, the command would be: runa

How to enable .NET Framework 3.5 on Windows 8 or 2012

Install the .NET Framework 3.5 on Demand If an app requires the .NET Framework 3.5, but doesn't find that version enabled on your computer, it displays the following message box, either during installation, or when you run the app for the first time. In the message box, choose Install this feature to enable the .NET Framework 3.5. This option requires an Internet connection. Enable the .NET Framework 3.5 in Control Panel You can enable the .NET Framework 3.5 yourself through Control Panel. This option requires an Internet connection. Press the Windows key Windows logo on your keyboard, type Windows Features, and press Enter. This brings up the Turn Windows features on or off dialog box. Alternately, open Control Panel, click on the Programs items, and then click on “Turn Windows features on or off” under Programs and Features. Select the .NET Framework 3.5 (includes .NET 2.0 and 3.0) check box, press OK, and reboot your computer if prompted. Step 1  : Go to Setting

VMware UEM management

VMware UEM series: Management console and setup VMware acquired Immidio a while back and transformed it into VMware UEM. In this blog series I will show you how to setup VMware UEM, what the requirements are. The next blog article will discuss the installation of the agent in th VDI desktop and the configuration of the group policy. The last blog will discuss benefits of using an UEM solution instead of standard Microsoft tooling. So enough about what is coming let's take a look at VMware UEM. What is UEM? UEM stands for User Environment Management, in normal words managing everything regarding the user. So everything that lives in the HKCU and AppData world is managed by a UEM solution. It takes away the need to use roaming or mandatory profile and therefore eliminates all issues users have experienced during the years. With UEM you now have complete control of the users environment, to your and their benefit. Requirements The great thing about VMware UEM is that there a

Data Copy(EUC user Data)

Robocopy can be used for Data migration   Robocopy (Robust File Copy) is a command-line file copy utility that comes with Windows Vista / Windows 2008 or newer. Until Vista, Robocopy was a part of  Windows Resource Kit Tools as a free download (http://www.microsoft.com/downloads/details.aspx?FamilyID=9D467A69-57FF-4AE7-96EE-B18C4790CFFD&displaylang=en This link is external to TechNet Wiki. It will open in a new window. ). Unlike normal copy commands, Robocopy is designed for reliable copy or mirroring while maintaining the permissions, attributes, owner information, timestamps and properties of the objects copied.          ============================================================ robocopy "F:\Folder1\FOLDER2" "\\fileshare\myfile\Charvo" /MIR /SEC /secfix /R:5 /W:5         ============================================================ Robocopy syntax ROBOCOPY source destination [file [file]...] [options] source Source Directory (drive:\pa