0

我在 win 7 企业环境中进行以下批处理,远程重新创建用户配置文件。我知道代码可能会更有效,但是除了需要删除用户计算机上用于其个人资料的注册表项之外,它都可以正常工作。我不确定如何找到他们的特定条目然后将其删除。大家可以看看吗?此外,欢迎任何代码改进。我仍然对顶部的整个“RWM”图形有疑问,但这并不重要。你会看到你是否打开了批处理。

@echo off
MODE 75,30

::Notes
::Remote Workstation Manager BETA unreleased
::
::

:start
cls
TITLE Remote Workstation Manager BETA unreleased

::Declarations
setLocal EnableDelayedExpansion
set date=%date:~4,2%%date:~7,2%%date:~10,4%%
color 0a

echo.&echo.&echo.&echo.&echo.&echo.
SET /P ".=                   "<nul &Call :Color 0E " ######      #     #     #     # " end&echo.
SET /P ".=                   "<nul &Call :Color 0E " #     #     #  #  #     ##   ## " end&echo.
SET /P ".=                   "<nul &Call :Color 0E " #     #     #  #  #     # # # # " end&echo.
SET /P ".=                   "<nul &Call :Color 0E " ######      #  #  #     #  #  # " end&echo.
SET /P ".=                   "<nul &Call :Color 0E " #   #   ### #  #  # ### #     # " end&echo.
SET /P ".=                   "<nul &Call :Color 0E " #    #  ### #  #  # ### #     # " end&echo.
SET /P ".=                   "<nul &Call :Color 0E " #     # ###  ## ##  ### #     # " end&echo.
echo.
SET /P ".=                   "<nul &Call :Color 09 "=================================" end&echo.
SET /P ".=                   "<nul &Call :Color 09 "=" &Call :Color 0C " R" &Call :Color 0f "emote" &Call :Color 0C " W" &Call :Color 0f "orkstation" &Call :Color 0C " M" &Call :Color 0f "anager v1" &Call :Color 09 " =" end&echo.
SET /P ".=                   "<nul &Call :Color 09 "=================================" end&echo.&echo.&echo.

echo 1. - Recreate Windows User Profile
::Restarts Users Laptop and when at Login Screen

echo.0. - Exits

set /p input=Choose a number and press enter: 
if %input%==1 goto :1
if %input%==0 goto :0

:1
cls
@echo off
TITLE Recreating Windows Profile

set /p ip= Enter the computers IP or Workstation Name: 
echo The ip is %ip%

set /p username= Enter the users EUID: 
echo The username is %USERNAME%

cls
echo Press enter to restart the users machine.
echo.
pause

xcopy "\\utils\h$\Utilities\Restore.bat" "\\%ip%\c$\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup" /i /y

cls
echo Restarting users PC . . .

@echo off

shutdown -r -f -t 1 -m \\%ip%

@echo off

:loop
Timeout /t 15
ping -n 1 %ip% >null
if %ERRORLEVEL% EQU 0 goto :loop
if %ERRORLEVEL% EQU 1 goto :continue2

:continue2
cls
@echo off
echo Waiting for Startup . . .
:retry
Timeout /t 2
IF NOT EXIST "\\%ip%\c$\Users\%USERNAME%\" goto :retry
IF EXIST "\\%ip%\c$\Users\%USERNAME%\" goto :continue3

:continue3
Timeout /t 10
cls
echo Refreshing profile . . .

rmdir "\\%ip%\c$\Users\Temp" /s /q

rmdir "\\%ip%\c$\Users\Temp.COF" /s /q

rename "\\%ip%\c$\Users\%USERNAME%" %USERNAME%.%date%

echo.
echo Complete.

Timeout /t 10
cls

echo Waiting for the User to log in . . .

:retry2
sleep 2
IF NOT EXIST "\\%ip%\c$\Users\%USERNAME%\" goto :retry2
IF EXIST "\\%ip%\c$\Users\%USERNAME%\" goto :continue4

:continue4

cls
echo Completed. Wait for new profile to be created and verify the users data has been restored.

echo.
pause
goto :start

0:
exit
4

2 回答 2

0

在 powershell 中,您可以使用:

gci "HKLM:\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsNT\CurrentVersion\ProfileList" -rec -ea SilentlyContinue | % { if((get-itemproperty -Path $_.PsPath) -match "techid") { $_.PsPath} } | Remove-Item
于 2014-09-02T20:20:23.573 回答
0

您可以使用专门为此任务设计的工具(从文件夹视图和注册表视图中彻底删除用户配置文件)Delprof http://www.microsoft.com/en-us/download/details.aspx?id=5405&751be11f- ede8-5a0c-058c-2ee190a24fa6=正确执行此任务。您可能还可以查看一个名为 Delprof 2 的新(非官方)工具(http://www.edugeek.net/forums/windows-7/75098-delprof2-unofficial-successor-microsoft-s-delprof-user-profile -删除工具.html )

您可能会更多地解释“重新创建”用户配置文件的含义,您是否只是指擦除用户配置文件并让 Windows 重新创建它并将批处理添加到启动文件夹以进行一些自定义?

于 2014-06-27T17:45:20.310 回答