Showing posts with label Windows 10 Diskless. Show all posts
Showing posts with label Windows 10 Diskless. Show all posts

Wednesday, March 29, 2023

Saturday, December 17, 2022

Disable registry optimizer Windows 10 at Boot

- Open notepad and paste the following registry code :
 
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Session Manager\Configuration Manager\Defrag]
"LastRun"="12:31:2999"
"TotalBytesSaved"=hex(b):ff,ff,ff,ff,ff,ff,ff,fe

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce]
"Skip Windows Registry Optimizer At Boot"="reg import \"C:\\Windows\\skip_windows_reg_optimizer_at_boot.reg\""


- Save it as "skip_windows_reg_optimizer_at_boot.reg".

- Super user one of client, copy the reg file into "c:\windows" then import the registry file. 

- Shutdown the client and save the change made by super user.

Kredit & Source : Kroco Latoz ( https://tools-warnet.blogspot.com )

Friday, October 15, 2021

Prevent Access to Drives from Explorer with Command Prompt

You can restrict access to drives in your computer with command prompt or with batch file. This is usefull when you dont want to edit your diskless image, but you already set batch command to run in task scheduller like in this tutorial : http://learningbytutz.blogspot.com/2020/01/fix-missing-tray-icon-automatically-for.html

Monday, September 20, 2021

Repair iusb3hxc.sys Blue Screen of Death ( BSOD ) in Diskless Environment

Have you experienced this blue screen before in diskless environment ? . This BSOD usually occurred because there is conflicted driver for Intel Usb 3 for each mainboard in your diskless environment.

Saturday, July 31, 2021

Disable Window Defender On Windows 10 1903 and Higher Version

- First, turn off all protections in Windows Defender : Realtime-Protection, Cloud-delivered protection, Automatic sample submission, Tamper protection


Saturday, April 10, 2021

Fix "PNP Detected Fatal Error" Blue Screen in CCBoot Client Image

Mount the Client's Parent Image with CCBoot server console or with Windows Disk Management and delete  CCBootPNPX.sys in "C:\Windows\System32\Drivers" folder. Don't forget to save the image after you did it.

Friday, August 7, 2020

Disable Kernel Debugger for Windows 10

 Open Command Prompt with administrator rights, then type the following command :

bcdedit /debug off

Sunday, July 19, 2020

How to disable Schedule for Update Orchestrator in Windows 10

- To disable schedule for Update Orchestrator in Windows 10, you need to download PsTools from here : https://docs.microsoft.com/en-us/sysinternals/downloads/pstools or here. After you've downloaded it, extract the zip file anywhere you want ( for example "D:\PsTools" ).

- Open command prompt with administrator rights, then change the current directory to the folder where you extracted the PsTools.zip file.

cd D:\PsTools

- Then type this command and press enter :

psexec.exe -i -s %windir%\system32\mmc.exe /s taskschd.msc

- Click on Agree button to open the task scheduler remotely.

Tuesday, May 19, 2020

Fix missing Nvidia Control Panel in Windows 10

Method One :
- If you have already installed Nvidia DCH ( Declarative, Componentized, Hardware) driver, you have to uninstall it with Nvidia default uninstaller then proceed with DDU ( Display Driver Uninstaller ) to clean the system from the DCH driver completely . You can download DDU from here.
- After download complete, run DDU and allow it to reboot windows to safe mode and run DDU in safe mode for absolute stability.
- After you uninstalled the DCH version, go to this page https://www.nvidia.com/Download/Find.aspx?lang=en-us# to download the Nvidia Standard driver. Choose Standard in Windows Driver Type, please note that the standard version is only available for Windows 10 x64-based system. And it's recommended to use the Recommended/Certified driver version.

Monday, March 30, 2020

Windows 10 Network Optimization for CCBoot Diskless

This Optimization can be done before image is created ( Windows 10 still on harddrive as operating system ) and after image is created ( modify Windows 10 image using "Enable super client" feature in CCBoot server). Before we continue, make sure you have installed CCBoot client. Then use PnP tool to collect local NIC and merge the collected NIC. After that, follow these steps :

1. First, check PCI value of the ethernet using device manager. Open device manager, then go to "Network adapter". Right click on the ethernet then choose properties, then click on Details tab. Change Property to Device instance path, then in Value box you will see the PCI value of the ethernet. Take note of the value, in the picture below the important thing of the value is PCI\VEN_10EC&DEV_8168 and REV_15.

Friday, January 17, 2020

Fix Missing SysTray Icon Automatically for Diskless Client

Let's get to the point

1. First, create batch file and place it where ever you want, for this example i put it in D drive. Then copy paste these command below into the file. Don't forget to save it and give it name "missingtray.bat" :

@echo off
reg delete "HKEY_CURRENT_USER\Software\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\TrayNotify" /v PastIconsStream /f
reg delete "HKEY_CURRENT_USER\Software\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\TrayNotify" /v IconStreams /f
taskkill /f /im explorer.exe & start explorer.exe
exit

Friday, August 23, 2019

Disable Apps running in the background in Windows 10

Apps running in background can consume a lot of resource, especially for diskless. To reduce that you need to disable those apps. Here are the steps :
1. Press ⊞ Win  + i or click Start button and select Settings , then click on Privacy.

Saturday, August 17, 2019

Windows 10 Services need to disable for diskless client

Windows 10 Services need to disable for diskless client. If you can't disable a service, use Windows Update blocker and add Service name to wub.ini [Services_list] section. Or you can use windows optimizer to disable it.















Sunday, July 28, 2019

Remove Windows 10 BloatWare

There are 2 methods :
1. Manually
- Run powershell as administrator.
- Type these commands to get list of windows bloatware :

DISM /Online /Get-ProvisionedAppxPackages | select-string Packagename

Tuesday, May 21, 2019

Creating Virtual drive for Folder using Subst Command in Windows

Using subst command, you can make virtual drive for any your desired folder. This can be usefull if you need to make a game work in diskless environment where drive in server and client were mapped differently.

And this how it works :
  1. Open Command Prompt. Don't run it as administrator because it has to run on current account or you will not see it in explorer.
      2. Type and provide the following command : subst drive_letter: folder_path  
    For example : subst R: "E:\Program Files"
Or you can subst the folder without have to specifie physical drive and path of the folder. But you have to change the current directory to where the folder located.
For example :
You want to subst "Program Files" folder with path "E:\New Folder\Program Files",
you can make batch file and write in this command : Subst R: "Program Files" and place the batch file inside the "New Folder" .

Saturday, May 18, 2019

Creating Symbolic Links (SymLinks) on Windows

Example :
You want to symlinks folder "D:\Blizzard\ProgramData\Battle.net" to "C:\Programdata" then type this :

mklink /J "C:\Programdata\Battle.net" "D:\Blizzard\ProgramData\Battle.net"

Note:
- /J parameter creates a Directory Junction .If you want to symlinks one file only, remove /J.
- You can use this to replace xcopy command. It is more efficient than xcopy.
- For more information about mklink, type : mklink /? in command line
- /J parameter doesn't need administrator privilege than /D parameter.

Friday, April 12, 2019

CCboot Stuck Booting di Windows 10

Jika CCboot stuck di windows 10 dengan chipset terbaru seperti h110, h310 atau chipset terbaru lainnya. Coba lakukan beberapa solusi berikut di bawah ini.

Solution :
- Install driver lan asli dari motherboard dan jangan gunakan driver lan bawaan dari Microsoft.

-  Jangan klik yes ketika ditanya "optimize windows" ketika selesai install ccboot client.

- Jangan pilih semua  NIC driver di jendela "NIC Drivers" ketika sudah selesai install ccboot client. Uncheck semua pilihan NIC dengan mengklik "select all" dan klik ok.

- Lalu klik "NIC PnP", kemudian klik "Collect Local Nic", lalu klik "Merge Collected NIC".

- Jika masih stuck, enable "Network Stack" di bios.

- Jika masih stuck juga ganti PXE nya di client properties di Ccboot server, dari "gpxe.pxe" ke "gpxex.pxe".

- Jika masih stuck juga , tambahkan NIC driver ke image dengan menggunakan feature Add NIC Driver to Image di CCBoot server. Dengan cara sebagai berikut :

Thursday, February 28, 2019

Install SmartBilling on Windows 10

1. Disable smartstarter at windows startup
2. Run > compmgmt.msc . Then make new schedule like steps at the following pictures :

Tuesday, February 26, 2019

Disable "important updates missing" Notification in Windows 10

If you use windows 10 and don't want to update your windows but disturbed by update notification like image below :


Then you can disable this notification by edit windows 10 registry. Go to this key :

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\WindowsUpdate

Then modify TrayIconStatus key, click on hexadecimal then change the value from 10 to 0.

Or Just rename the application MusNotifyIcon.exe located in Windows\System32.
For example : MusNotifyIcon1.exe