Jump to content

SirBond

Member
  • Posts

    50
  • Joined

  • Last visited

Reputation Activity

  1. Informative
    SirBond reacted to Stormseeker9 in AORUS RTX 2080 XTREME vga holder   
    Its a bracket to reinforce the GPU to prevent/help against sagging,  this is just a generic photo
  2. Like
    SirBond reacted to Shreyas1 in Windows 10 1903 without sandbox   
    I think you need pro for sandbox. Are you using windows 10 pro or home?
  3. Like
    SirBond reacted to TetraSky in Windows 10 1903 without sandbox   
    The sandbox app is not enabled by default and require Windows 10 Pro.
    You need to enable it in Control Panel > Programs and Features > Turn Windows features on or off
  4. Like
    SirBond reacted to davrosG5 in Windows 10 1903 without sandbox   
    You may need to enable hardware virtualisation in your BIOS before you can enable sandbox in Windows.
    Windows Central guide
  5. Like
    SirBond reacted to WereCat in Windows 10 1903 without sandbox   
    You need Windows10 Pro or better. 
    You must enable Hyper V, then restart PC. 
    Then you can enable the Sandbox. 
     
    However, if it won't appear, open notepad and copy this inside, then save it as a .bat file on the desktop and run it. 
     
    @echo 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
×