• 5回复贴,共1

win10家庭版没有沙盒功能吗???

只看楼主收藏回复

win10家庭版没有沙盒功能吗???


来自Android客户端1楼2019-05-23 10:51回复
    专业版才有


    来自iPhone客户端2楼2019-05-26 18:37
    收起回复
      2025-09-03 00:17:42
      广告
      不感兴趣
      开通SVIP免广告
      @璐村惂鐢ㄦ埛_000076K馃惥 off
      echo Checking for permissions
      >nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
      echo Permission check result: %errorlevel%
      REM --> If error flag set, we do not have admin.
      if '%errorlevel%' NEQ '0' (
      echo Requesting administrative privileges...
      goto UACPrompt
      ) else ( goto gotAdmin )
      :UACPrompt
      echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
      echo UAC.ShellExecute "%~s0", "", "", "runas", 1 >> "%temp%\getadmin.vbs"
      echo Running created temporary "%temp%\getadmin.vbs"
      timeout /T 2
      "%temp%\getadmin.vbs"
      exit /B
      :gotAdmin
      if exist "%temp%\getadmin.vbs" ( del "%temp%\getadmin.vbs" )
      pushd "%CD%"
      CD /D "%~dp0"
      echo Batch was successfully started with admin privileges
      echo .
      cls
      Title Sandbox Installer
      pushd "%~dp0"
      dir /b %SystemRoot%\servicing\Packages\*Containers*.mum >sandbox.txt
      for /f %%i in ('findstr /i . sandbox.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%%i"
      del sandbox.txt
      Dism /online /enable-feature /featurename:Containers-DisposableClientVM /LimitAccess /ALL
      pause


      4楼2020-06-02 10:16
      收起回复