Jump to content

Flip1001

Member
  • Posts

    23
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

About Flip1001

Flip1001's Achievements

0

Reputation

  1. 1. Backup your DCs and policies to be on the safe side. 2. Download and install the Administrative Templates (ADMX) for Windows Server 2008 R2 and Windows 7 on a Windows 7 SP1 or 2008 R2 computer. 3. The admx and adml template files will be installed at "%PROGRAMFILES%\Microsoft Group Policy\win72008r2\PolicyDefinitions" on your Win7 SP1 computer. Copy the PolicyDefinitions folder to "%WINDIR%\SYSVOL\domain\Policies\PolicyDefinitions" on the DC. 4. Install the Remote Server Administration Tools for Windows 7 with Service Pack 1 (SP1) You will from now on manage the group policies from your Win7 SP1 computer. If you open the GPMC on the 2003 server it won't know about the ADMX files. If you open the GPMC on a 2008 server (not R2), you will see some error messages popup, because the admx files are a newer format than what 2008 knows about. Look at this article for more info Supporting Windows 7 Group Policy Settings with Windows Server 2003 Domain Controllers
  2. @echo off for /l %%a in (1,1,3) do ( if not exist "E:\Downloads\Download00%%a\." (md "E:\Downloads\Download00%%a") xcopy "C:\Documents and Settings\Administrator\My Documents\Downloads" "E:\Downloads\Download00%%a" )
  3. Using this code as a login script worked for me. Just disable the IE homepage gpo if you have it set. http://blogs.technet.com/b/heyscriptingguy/archive/2007/09/10/how-can-i-assign-multiple-home-pages-to-internet-explorer-7-0.aspx
  4. What do you think about this? @ECHO OFF FOR %%X IN (Test.txt Test.html Test.doc Test.xls AnotherTest.txt) DO (Call :CopyFiles %%X) GOTO :END :CopyFiles FOR %%G IN (Documents Folder MoreDocuments) DO ( ECHO Copying %1 to %%G COPY /Y "%1" "%%G"> NUL ) GOTO :EOF :END ECHO. ECHO Done PAUSE > NUL
  5. wmic csproduct list /format:list works for me in both Win7(my computer) and WinPE 3.0 (in VirtualBox). Did you completely install WMI? Here is what I installed in my WinPE. dism /image:C:\winpe_x86\mount /Add-Package /PackagePath:"C:\Program Files\Windows AIK\Tools\PETools\x86\WinPE_FPs\winpe-scripting.cab" dism /image:C:\winpe_x86\mount /Add-Package /PackagePath:"C:\Program Files\Windows AIK\Tools\PETools\x86\WinPE_FPs\en-us\winpe-scripting_en-us.cab" dism /image:C:\winpe_x86\mount /Add-Package /PackagePath:"C:\Program Files\Windows AIK\Tools\PETools\x86\WinPE_FPs\winpe-wmi.cab" dism /image:C:\winpe_x86\mount /Add-Package /PackagePath:"C:\Program Files\Windows AIK\Tools\PETools\x86\WinPE_FPs\en-us\winpe-wmi_en-us.cab"
×
×
  • Create New...