Everywhere
  • Everywhere
  • Articles
  • Pages
  • Forum
  • Files
  • Records
  • Records
  • Records
  • Records
  • Records
  • Records
  • More Options
  1. Forum
  2. Downloads
  3. Hardware
    1. 3D-Accelerator
    2. CPU-Sockets
    3. RAM
    4. HDMI & Display Port
    5. USB
    6. Thunderbolt
  4. Parcum
    1. Parcum - Map
    2. Parcum - All Entries
    3. Parcum - Countries
    4. Parcum - Categories
  5. Other
    1. ISeeT Main Site
    2. Link-Library
    3. Restaurants, Snacks and more
  • Login
  • Register
  • Search
  1. ISeeT Forums
  2. Members
  3. ISeeTWizard

Posts by ISeeTWizard

  • Watchtower

    • ISeeTWizard
    • 26 October 2025 at 14:03

    Attention: The video is still in german

    External Content youtu.be
    Content embedded from external sources will not be displayed without your consent.
    Through the activation of external content, you agree that personal data may be transferred to third party platforms. We have provided more information on this in our privacy policy.

    Bash
    docker run -d --name=watchtower \
    -v /volume1/docker/docker.sock:/var/run/docker.sock \
    --restart=always \
    containrrr/watchtower --cleanup --include-stopped --include-restarting --interval 21600

    Watchtower updates your containers automatically without asking. For some, this is very useful, but for others who have to work with a container all the time, less so.

    That's why there is also an option to always run Watchtower manually instead of automatically. You can find all of these options in the documentation.

    Here is an example of a manual update of Calibre:

    Bash
    docker run --rm \
    -v /volume1/docker/docker.sock:/var/run/docker.sock \
    containrrr/watchtower \
    --run-once calibre

    docker run --rm creates the Watchtower container, runs it and when it is finished, it is automatically deleted.


    Create symbolic link for docker.sock

    Bash
    ln -s /var/run/docker.sock /volume1/docker/docker.sock

    I am creating this symbolic link because I was having problems with some containers accessing docker.sock. When I linked them like this, those containers no longer had any problems and ran perfectly.

    Used Links

    Watchtower Documentation

  • Kavita

    • ISeeTWizard
    • 26 October 2025 at 14:00

    Kavita is a comic book reader - the whole thing is kept relatively simple and clean. I had a few problems but these are explained in the video.

    External Content youtu.be
    Content embedded from external sources will not be displayed without your consent.
    Through the activation of external content, you agree that personal data may be transferred to third party platforms. We have provided more information on this in our privacy policy.

    Bash
    docker run -d --name=kavita \
    -p 5000:5000 \
    -e PUID=1038 \
    -e PGID=100 \
    -v /volume1/docker/Kavita:/kavita/config \
    -v /volume1/Comics:/manga \
    --restart always \
    kizaing/kavita

    SMTP Server

    Bash
    docker run --name kavita-email -p 5003:5003 
    -e SMTP_HOST="smtp.office365.com" 
    -e SMTP_PORT="587" 
    -e SMTP_USER="frank@datateam.lu" 
    -e SMTP_PASS="xyungelöst" 
    -e SEND_ADDR="frank@datateam.lu" 
    -e DISP_NAME="Frank Schroeder (Anime)" 
    -d kizaing/kavitaemail:latest

    Remember that this is just an example and my password is not included - so the whole thing as it is will be useless for you but simply a small suggestion as to how you could solve it.

    As an additional tool, I can recommend the Comictagger to tag the comics correctly.
    I didn't show or explain this in the video as it is actually very self-explanatory.

    Used Links

    Random Number (for a port number by random generator)

  • your_spotify

    • ISeeTWizard
    • 26 October 2025 at 13:58

    your_spotify is a web app that shows you statistics about your Spotify usage.

    You can find out more in the video.

    The installation takes place in 3 steps:

    • Database
    • Server
    • Web Client

    External Content youtu.be
    Content embedded from external sources will not be displayed without your consent.
    Through the activation of external content, you agree that personal data may be transferred to third party platforms. We have provided more information on this in our privacy policy.

    Bash
    docker run -d --name mongo \
    -v /volume1/docker/your_spotify_db:/data/db \
    --restart always \
    mongo:4.4.13

    With Synology you should be careful to use a 4.4.x version of the Mongo DB because 5.x is not compatible with the CPU of the device (maybe with newer devices this isn't the case anymore).

    Bash
    docker run -d --name=your_spotify_server \
    --link mongo \
    -p 33424:8080 \
    -e API_ENDPOINT= https://dyndnsserverdomain/api  \
    -e CLIENT_ENDPOINT= https://dyndnsserverdomain  \
    -e SPOTIFY_PUBLIC=eurepublicid \
    -e SPOTIFY_SECRET=eurepublicidsecret \
    -e CORS=all \
    --restart always \
    yooooomi/your_spotify_server

    ou must fill in the API and CLIENT endpoint according to your settings.

    In the same way, you must take your Spotify PUBLIC and SECRET data from your developer account. Links to this are a little further down.

    When filling in the data in the configuration on the Spotify page, it is important to fill in the correct redirect URI.

    Code
     https://dyndnsserverdomain/api/oauth/spotify/callback 
    Bash
    docker run -d --name=your_spotify_client \
    -p 17812:3000 \
    -e API_ENDPOINT= https://dyndnsserverdomain/api  \
    yooooomi/your_spotify_client

    Please make sure to fill in your API endpoint correctly here too.

    nginx
    server {
        listen 443 ssl;
        listen [::]:443 ssl;
    
        server_name spotify.*;
    
        include /config/nginx/ssl.conf;
    
        client_max_body_size 0;
    
        # enable for ldap auth, fill in ldap details in ldap.conf
        #include /config/nginx/ldap.conf;
    
        # enable for Authelia
        #include /config/nginx/authelia-server.conf;
    
    
        location /api/ {
            # enable the next two lines for http auth
            auth_basic "Restricted";
            auth_basic_user_file /config/nginx/.htpasswd;
    
            # enable the next two lines for ldap auth
            #auth_request /auth;
            #error_page 401 =200 /ldaplogin;
    
            # enable for Authelia
            #include /config/nginx/authelia-location.conf;
    
            include /config/nginx/proxy.conf;
            include /config/nginx/resolver.conf;
            proxy_pass  http://192.168.178.20:33424/; 
        }
    
        location / {
            # enable the next two lines for http auth
            #auth_basic "Restricted";
            #auth_basic_user_file /config/nginx/.htpasswd;
    
            # enable the next two lines for ldap auth
            #auth_request /auth;
            #error_page 401 =200 /ldaplogin;
    
            # enable for Authelia
            #include /config/nginx/authelia-location.conf;
    
            include /config/nginx/proxy.conf;
            include /config/nginx/resolver.conf;
            set $upstream_app holodeck;
            set $upstream_port 17812;
            set $upstream_proto http;
            proxy_pass $upstream_proto://$upstream_app:$upstream_port;        
            #proxy_pass  http://192.168.178.20:17812/; 
        }
    }
    Display More

    SWAG example conf file for your_spotify.


    Used Links

    TZ - Timezone

    Random Number (for a port number by random generator)

    your_spotify @GitHub

    Spotify Developer Dashboard (an application must be created here to get an API key)

    Spotify Account Privacy (to request the past history)

  • SWAG - Secure Web Application Gateway

    • ISeeTWizard
    • 26 October 2025 at 13:55

    SWAG is a reverse proxy software based on NGINX. I tried to do the same with Traefik but I failed - even if it worked somehow, many pages simply had missing information and were therefore useless.
    SWAG has a lot of ready-made configuration files for frequently used programs integrated and is therefore very easy to use.
    You can also have SSL certificates created automatically by Let's Encrypt and fail2ban is also on board.

    However, there is a big problem on a Synology, namely ports 80 and 443. Although the DSM software runs on a different port, these two ports were blocked and redirected.

    To get around this, there is a small script that I am giving you here. This is run via an SSH session and unlocks ports 80 and 443 again.

    There are a lot of instructions on the internet about this but I found a script on Github that worked for me - a lot of things hadn't worked before. As always, I put the link below in the list of used links.

    External Content youtu.be
    Content embedded from external sources will not be displayed without your consent.
    Through the activation of external content, you agree that personal data may be transferred to third party platforms. We have provided more information on this in our privacy policy.

    Bash
    #! /bin/bash
    
    # NEWLY ADDED BACKUP FUNCTIONALITY IS NOT FULLY TESTED YET, USE WITH CARE, ESPECIALLY DELETION
    # Developed for DSM 6 - 7.0.1. Not tested on other versions.
    # Steps to install
    # Save this script in one of your shares
    # Edit it according to your requirements
    # Backup /usr/syno/share/nginx/ as follows:
    # # cd /usr/syno/share/
    # # tar cvf ~/nginx.tar nginx
    # Run this script as root
    # Reboot and ensure everything is still working
    # If not, restore the backup and post a comment on this script's gist page
    # If it did, schedule it to run as root at boot
    #   through Control Panel -> Task Scheduler
    
    HTTP_PORT=81
    HTTPS_PORT=444
    
    BACKUP_FILES=true # change to false to disable backups
    BACKUP_DIR=/volume1/apps/free_ports/backup
    DELETE_OLD_BACKUPS=false # change to true to automatically delete old backups.
    KEEP_BACKUP_DAYS=30
    
    DATE=$(date +%Y-%m-%d-%H-%M-%S)
    CURRENT_BACKUP_DIR="$BACKUP_DIR/$DATE"
    
    if [ "$BACKUP_FILES" == "true" ]; then
      mkdir -p "$CURRENT_BACKUP_DIR"
      cp /usr/syno/share/nginx/*.mustache "$CURRENT_BACKUP_DIR"
    fi
    
    if [ "$DELETE_OLD_BACKUPS" == "true" ]; then
      find "$BACKUP_DIR/" -type d -mtime +$KEEP_BACKUP_DAYS -exec rm -r {} \;
    fi
    
    sed -i "s/^\([ \t]\+listen[ \t]\+[]:[]*\)80\([^0-9]\)/\1$HTTP_PORT\2/" /usr/syno/share/nginx/*.mustache
    sed -i "s/^\([ \t]\+listen[ \t]\+[]:[]*\)443\([^0-9]\)/\1$HTTPS_PORT\2/" /usr/syno/share/nginx/*.mustache
    
    if which synoservicecfg; then
      synoservicecfg --restart nginx
    else
      synosystemctl restart nginx
    fi
    
    echo "Made these changes:"
    
    diff /usr/syno/share/nginx/ $CURRENT_BACKUP_DIR 2>&1 | tee $CURRENT_BACKUP_DIR/changes.log
    Display More

    To run the script, please change to the directory where you created it and run it as follows:

    Code
    sudo ./free_ports.sh

    Why this script? Well, as I said, it works, and above all it creates a backup of all changed files and tells you at the end what it has changed.

    You can also decide which port should be used instead of 80 and 443 to then free them up.

    It is best to save this script in a share under the name free_ports.sh, for example, and run it in an SSH session (don't forget sudo).

    I use Bitvise, for example, as an SSH client under Windows - but there are countless others.

    The script is supposed to always run at startup - but I haven't had to do that yet (my server restarts every day overnight - so it shuts down for 6 hours a night).

    Bash
    docker run -d \
      --name=swag \
      --cap-add=NET_ADMIN \
      -e PUID=1027 \
      -e PGID=100 \
      -e TZ=Europe/Luxembourg \
      -e URL=my.ddns.server \
      -e VALIDATION=http \
      -e EMAIL=euremailadresse \  
      -e SUBDOMAINS=heimdall, \
      -p 443:443 \
      -p 80:80 \
      -v /volume1/docker/Swag:/config \
      --restart unless-stopped \
      linuxserver/swag
    Display More

    Please remember to enter your DynDNS domain or similar under URL as well as a correct email address. Also always enter the correct IDs for folder rights.

    To create a .htpasswd file, use the following command:

    Code
    sudo htpasswd -c /volume1/docker/Swag/nginx/.htpasswd newuser


    Or for an additional user:

    Code
    sudo htpasswd /volume1/docker/Swag/nginx/.htpasswd newuser2

    Used Links

    TZ - Timezone

    Random Number (for a port number by random generator)

    SWAG @DockerHub

    Free_Ports Script @GitHub

    Bitvise SSH Client

    SWAG Reverse Proxy Configurations @GitHub (read the readme.md on this page!)

  • Heimdall

    • ISeeTWizard
    • 26 October 2025 at 13:52

    Attention: This video is still in german

    External Content youtu.be
    Content embedded from external sources will not be displayed without your consent.
    Through the activation of external content, you agree that personal data may be transferred to third party platforms. We have provided more information on this in our privacy policy.

    Bash
    docker run -d \
      --name=heimdall \
      -e PUID=1027 \
      -e PGID=100 \
      -e TZ=Europe/Luxembourg \
      -p 40979:80 \
      -p 9039:443 \
      -v /volume1/docker/Heimdall:/config \
      --restart always \
      lscr.io/linuxserver/heimdall

    I used Flame at the time and was looking for a better alternative and I think I found it in Heimdall 🙂


    Used Links

    TZ - Timezone

    Random Number (for a port number by random generator)

    Heimdall

    Heimdall @LinuxServer.io

    Heimdall @GitHub

  • Calibre

    • ISeeTWizard
    • 26 October 2025 at 13:50

    Attention: The video is still in german

    External Content youtu.be
    Content embedded from external sources will not be displayed without your consent.
    Through the activation of external content, you agree that personal data may be transferred to third party platforms. We have provided more information on this in our privacy policy.

    Bash
    docker run -d --name=calibre \
    -p 20118:8080 \
    -p 43797:8081 \
    -e PUID=1027 \
    -e PGID=100 \
    -e TZ=Europe/Luxembourg \
    -e PASSWORD=calibrepw \
    -v /volume1/docker/Calibre:/config \
    -v /volume1/E-Books.local:/e-books \
    -v /volume1/SSL:/SSL:ro \
    --restart always \
    lscr.io/linuxserver/calibre
    Display More

    Please remember to write your own password instead of calibrepw. The default login user is abc. Also make sure you use your own user ID and not the one I give as an example here.

    Calibre is a free software package for processing, converting and managing e-books for Linux, macOS and Windows .


    UsedLinks

    TZ - Timezone

    Random Number (for a port number by random generator)

    Documentation for the Calibre Docker Container

    Calibre

  • Calibre Web

    • ISeeTWizard
    • 26 October 2025 at 13:48

    Attention: The video is still in german

    External Content youtu.be
    Content embedded from external sources will not be displayed without your consent.
    Through the activation of external content, you agree that personal data may be transferred to third party platforms. We have provided more information on this in our privacy policy.

    Bash
    docker run -d --name=calibre-web \
    -p 8083:8083 \
    -e PUID=1027 \
    -e PGID=100 \
    -e TZ=Europe/Luxembourg \
    -e DOCKER_MODS=linuxserver/calibre-web:calibre \
    -e OAUTHLIB_RELAX_TOKEN_SCOPE=1 \
    -v /volume1/docker/CalibreWeb:/config \
    -v /volume1/E-Books.local:/e-books \
    -v /volume1/SSL:/SSL:ro \
    --restart always \
    lscr.io/linuxserver/calibre-web
    Display More

    Default user: admin
    Default password: admin123

    Calibre-Web is a web interface for Calibre that allows you to manage your e-book collection.

    You can browse through your books, read them directly from the browser or on one of your devices, ideally


    Used Links

    TZ - Timezone

    Random Number (for a port number by random generator)

    Calibre-Web @LinuxServer.io

    Calibre-Web @GitHub

  • Statement from that time about my YouTube Videos & SSL

    • ISeeTWizard
    • 26 October 2025 at 13:47

    Attention: The video is still in german

    External Content youtu.be
    Content embedded from external sources will not be displayed without your consent.
    Through the activation of external content, you agree that personal data may be transferred to third party platforms. We have provided more information on this in our privacy policy.

    Today there is a small statement about my videos because some of the comments made me very upset and angry.

    I also talk about SSL and the end is not the end because I had to add something lol 🙂


    Used Links

    SSL Converter (Site often slow - so please be patient 🙂 )

    Docker Images - Examples

  • Portainer

    • ISeeTWizard
    • 26 October 2025 at 13:46

    Attention: The video is still in german

    External Content youtu.be
    Content embedded from external sources will not be displayed without your consent.
    Through the activation of external content, you agree that personal data may be transferred to third party platforms. We have provided more information on this in our privacy policy.

    Bash
    docker run -d --name=portainer \
    -p 8000:8000 \
    -p 9000:9000 \
    -v /volume1/docker/docker.sock:/var/run/docker.sock \
    -v /volume1/docker/Portainer:/data \
    --restart=always \
    portainer/portainer-ce

    Portainer is an open source container management tool that eliminates the need to write code. Portainer provides a graphical user interface for everything that can be done via a Docker command line.

    Portainer can also be password protected and multiple users and/or roles can be distributed.


    Used Links

    Portainer Community Edition Documentation

  • Warcraft Remastered Battle Chest

    • ISeeTWizard
    • 26 October 2025 at 13:22
    Rating
    4.5/5
    Excellent

    Ratings

    These ratings are my personal opinion - Your Opinion maybe different than mine!

    Graphics

    4 out of 5

    Difficulty

    4 out of 5


    Description

    THE DRUMS OF WAR ECHO THROUGH TIME

    Celebrate 30 years of Warcraft® history and travel back to the beginning with remastered versions of Warcraft® I and II and a newly updated Warcraft® III Reforged.

    This comprehensive collection includes the following games:

    • Warcraft® II: Battle.net® Edition
    • Warcraft® I: Remastered
    • Warcraft® II: Remastered
    • Warcraft® III: Reforged (including Spoils of War Edition bonuses)
    • Warcraft®: Orcs & Humans


    Warcraft® 1: Remastered

    Relive the original Warcraft® story created in 1994 with remastered assets and updated quality of life features for modern day gaming.


    Warcraft® 2: Remastered

    Navigate your way through the Tides of Darkness and Beyond the Dark portal with remastered assets and updated quality of life features for modern day gaming.


    Warcraft® 3: Reforged 2.0

    Warcraft®III Reforged has received a 2.0 patch which includes updated Classic HD assets and improved Reforged environment visuals. Customize your army to play with the visuals you prefer.  Includes all of the benefits of the Spoils of War Edition.


    Original Warcraft Titles

    In addition to the Remasters, Warcraft: Orcs & Humans and Warcraft II: Battle.net Edition are also included in the Battle Chest.


    My Opinion

    WOW - I'm back in my childhood - it looks great and I'm so happy that I'm now able to replay the original Warcraft Games on recent Computers.


    Requirements

    Minimum

    Operating System (OS)

    Windows7
    Windows 8
    Windows 10 (64Bit - latest version)

    Processor (CPU)

    Intel® Core® i3-530
    AMD™ Athlon™ Phenom™ II X4 910

    Memory (RAM)

    4 GB

    Graphics processing unit (GPU)

    NVIDIA® GeForce® GTS 450
    AMD Radeon™ HD 5750

    DirectX

    not communicated

    Network

    Broadband Internet connection

    Disk Space

    30 GB

    Additional Comment

    800 x 600 minimum display resolution


    Recommended

    Operating System (OS)

    Windows 10 (64Bit - latest version)

    Processor (CPU)

    Intel® Core™ i5-6400
    AMD Ryzen™ 7 1700X

    Memory (RAM)

    8 GB

    Graphics processing unit (GPU)

    NVIDIA® GeForce® GTX 960
    AMD Radeon™ R9 280X

    DirectX

    not communicated

    Network

    Broadband Internet connection

    Disk Space

    30 GB

    Additional Comment

    800 x 600 minimum display resolution

    Also available for Intel MAC and Warcraft 3 runs also on Mac Silicon


    Trailer etc.

    External Content youtu.be
    Content embedded from external sources will not be displayed without your consent.
    Through the activation of external content, you agree that personal data may be transferred to third party platforms. We have provided more information on this in our privacy policy.


    Related links (non affiliate!)

    Blizzard


    Photos


  • Suspend/Resume Bitlocker

    • ISeeTWizard
    • 26 October 2025 at 13:16

    Sometimes you need to suspend your Bitlocker Encryption in order to change some hardware.

    Here a 2 ways to do it - you need admin rights to do it.


    Powershell

    Open Powershell as admin an run the following command to suspend the Bitlocker Encryption.

    Code
    Suspend-Bitlocker -MountPoint "C:" -RebootCount 0

    Open Powershell as admin an run the following command to resume the Bitlocker Encryption

    Code
    Resume-Bitlocker -MountPoint "C:"


    CMD

    Open CMD as admin an run the following command to suspend the Bitlocker Encryption

    Code
    Manage-bde -Protectors -Disable C: -RebootCount 0

    Open CMD as admin an run the following command to resume the Bitlocker Encryption

    Code
    Manage-bde -Protectors -Enable C:


    Additional info

    You may have noticed that both have an option with RebootCount. This is used to say to the system that after x reboots the system will automatically reactivate itself.

    The value here can be maximum 15.

  • Errors while activating Windows Server

    • ISeeTWizard
    • 26 October 2025 at 13:14

    2016 (even 2012 / 2019 possibly also on newer editions)

    Sometimes it can happen that a key entry is corrupt and you can't activate your Windows anymore and even worse through the GUI you can't change the product key or reinstall it.

    So the only option is an elevated Powershell, like so often...

    Remove the current key with:

    Code
    slmgr -upk

    Install the new key (even if identical to the already installed one)

    Code
    slmgr -ipk yourkeyhere

    It may take now 2-3 minutes until your installation is activated!

  • Microsoft Windows Info Post

    • ISeeTWizard
    • 26 October 2025 at 13:13

    First of all you need to know that this here is just an additional info page about Windows . You can find more info on the dedicated pages on the main site within the corresponding timeline area.

    Since there are many versions of Windows , I thought I would install the different versions within a virtual system and show them to you.

    The important thing is that if you want to copy it → remains legal
    I have a license for every version of Windows shown except for versions 1 and 2, although I have to check to what extent these are still licensed. In the worst case, I only install them (test version) to show you and then delete them again.

    The video will show up in the timeline within the specific version to not have everything in double and triple 🙂

    Here the most important links used:

    WinWorldPC

    VMWare - XP Support

    Tech Latest - Windows XP ISO Download

    VMWare Workstation

    Archive.org

    Windows 10 Downloader

    Windows 11 Downloader

    Windows 8 ISO Downloader

    Windows ISO Downloader - Best tool to download latest Windows and Office ISO files


    Click here for the Windows timeline on the main site - still under construction just like Windows itself 🙂

  • RDP client doesn't use stored credentials

    • ISeeTWizard
    • 26 October 2025 at 13:10

    Sometimes the password for a remote desktop connection isn't saved. This is due too a local policy.

    To change this you can do the following:

    Code
    open gpedit.msc
    
    navigate to:
    Computer Configuration - Administrative Templates - System - Credential Delegation
    
    look for and open the following policy:
    Allow saved credentials with NTML-only server authentication or
    Allow delegating saved credentials with NTLM-only server authentication
    
    select enabled and add your server/pc name where you want to connect 
    ATTENTION: Don't forget to put TERMSRV/ before your machine name
    and save password from in the list
    
    run gpupdate
    Display More

    If that doen't work you may have to go to your credential manager and under Windows Credentials you have on top your saved Windows Credentials. Here you delete the entry of your machine and recreate on the same page but under generic credentials. Pay attention that you need to enter just your machine name here, not TERMSRV/ in front of it as it than won't work.

  • Windows 10 V1803 update creates a new OEM Partition

    • ISeeTWizard
    • 26 October 2025 at 13:09

    To remove this annoying partition (there is always a popup of a full disk as this one doesn't have many space) you have to do the following:

    Open a command prompt with administrative rights and execute the commands from this post.

    Code
    diskpart
    list volume
    select volume <number of your volume>
    remove letter=<drive letter of your volume>
    exit
  • Install unsigned drivers

    • ISeeTWizard
    • 26 October 2025 at 13:08

    By enabling test mode

    Open an elevated command prompt

    Code
    bcdedit /set testsigning on

    But don't forget to disable it again when you have installed the drive

    Code
    bcdedit /set testsigning off

    Also SecureBoot must be DISABLED


    By disabling integrity checks

    Open an elevated command prompt

    Code
    bcdedit /set nointegritychecks off

    But don't forget to enable it again when you have installed the driver

    Code
    bcdedit /set nointegritychecks on

    Also SecureBoot must be DISABLED


    From advance boot menu

    Restart your computer by holding the shift key while clicking on restart

    In the advanced boot menu choose:

    1. Troubleshoot
    2. Advanced options
    3. Start-Up Settings (may be on a second page!!)
    4. Restart
    5. Than choose F7 to disable driver signature enforcement

    After the reboot you can install unsigned drivers. When you have installed the needed driver reboot again to enable driver signing again.

  • How can I see to what edition I am able to upgrade to?

    • ISeeTWizard
    • 26 October 2025 at 13:07

    Enter in an elevated command prompt the following:

    Code
    Dism /Online /Get-TargetEditions
  • Windows 10/11 Fast Startup Mode

    • ISeeTWizard
    • 26 October 2025 at 13:04

    Maybe not so good for companies!

    Windows 10 includes a feature called “Fast Startup”, which is enabled by default. The whole idea behind this feature is to make it so computers don’t take as long to boot up after being shut down (rather than going into hibernation or sleep).

    It achieves this by essentially using a cut-down implementation of Windows Hibernation. Instead of saving all user and application state to a file like traditional hibernation, it only saves the kernel and system session to the hibernation file (no user session data) – that way when it “turns on”, it loads the previous system session into RAM and off you go. Its worth noting that this process doesn’t apply to reboots – only shutdowns. Reboots follow the traditional process of completely unloading the kernel and starting from scratch on boot-up.

    Obviously, it’s a great idea for consumers – quicker boot-up and login times = happy consumers.

    When you start using it in a corporate environment though, you can start running into some issues – primarily:

    • It can cause the network adaptor to not be ready prior to the user logging in. If you’re using folder redirection (without offline files – for computers that are always network-connected), then this isn’t such a good thing. It’s also not such a great thing for application of user-based group policies that only apply during login.
    • Some Windows Updates require the computer to be shut down/rebooted for them to install correctly. In the case of Fast Startup, the system isn’t really shutting down – it’s hibernating. Since users in corporate environments quite often just “shut down” at the end of the day (hibernate with Fast Startup), these updates don’t get installed. Of course there’s ways around this (have SCCM prompt the user to reboot, for example), but they’re not always an acceptable solution for every customer.

    Obviously if the computer doesn’t support hibernation, there’s no issues.

    If you’d like to disable Fast Startup, there doesn’t seem to be a specific GPO setting – you’ll have to use Group Policy Preferences instead. The relevant registry setting is here:

    Code
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Power\HiberbootEnabled    (1 = enable, 0 = disable)
  • Remote Desktop (RDP) to AzureAD connected PC

    • ISeeTWizard
    • 26 October 2025 at 13:03

    Sometimes you need to connect to an AzureAD connected device but with the normal login credentials AzureAD\userid this isn't possible.

    For these cases you have to modify the RDP file corresponding to this article. So open mstsc.exe and save the connection details to a place where you can find and open it.

    Open the RDP file with notepad!!

    Now check the following:

    This value should be present but maybe have another value:

    Code
    authentication level:i:2

    This is the value to add:

    Code
    enablecredsspsupport:i:0

    With these values the mstsc client will connect to the machine and only at that point your credentials are asked. If you have Windows Hello for Business activated please be aware that not the pin code is asked but the normal user password.

  • Windows User Profile (corrupt/deleted)

    • ISeeTWizard
    • 26 October 2025 at 13:02

    Sometimes Windows Profiles gets corrupt especially roaming profiles or if different users are working on the same machine someone is deleting files from another profile just for fun or what ever.

    Than it often happens that you get a temporary profile (a small popup appears on the bottom right when login in.

    Depending on what Windows version and theme it may look like this:

    Than you have some possibilities to restore normal functionality of that user profile (but all settings will always be gone).


    Moving entire profile as backup and deleting it from the advanced system settings

    When the profile of a user is corrupt you have to recreate it. Sometimes users have several GB of data and copying that as backup takes often too long and so you can simply move the users directory. But be aware that you must be in the correct settings page before doing that.

    1. First of all: Reboot the machine so that everything gets removed from the memory and log in as an administrator.
    2. Now open the Explorer and navigate to the users directory so that you can easily move or rename it. So normally it should be under c:\users.
    3. Than open Settings → System → About and click on the right on "Advanced System Settings"
      You can also enter under run ( Windows Key + R) the following: systempropertiesadvanced.exe
    4. Here under Advanced look for User Profiles and click on settings.
      You should than see a list of the profiles present on the system - also the one which is corrupt.
      If not look into the second chapter to delete it from the registry.

    Now you can move the profile as backup (or rename it) and then you can click delete in the settings pane.

    After the reboot the profile should then get recreated from scrap.


    Manual deleting within the registry

    Sometimes it happens that the profile is not listed anymore within the settings or someone deleted the wrong files etc.

    Here just be sure that you restarted the machine and that the users folders no longer exists (rename it if present or move it).

    After that open your registry with regedit.exe and navigate to the following place.

    Code
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList

    For some keys you should find the value "ProfileImagePath" where you can check that you have the correct users (it points to the folder of the user profile).

    If you have figured the correct key right click it and export it (as backup like always). Than delete it.
    Often the key exists a second time with the same value but .class at the end - This one you should also backup and delete.

    After that restart the computer and the profile should than be recreated.

    In some cases, maybe 1 of 100, that doesn't work and here only a reinstall of the machine can help.

  • Windows Tools (with switches)

    • ISeeTWizard
    • 26 October 2025 at 12:59

    Tool

    Switch

    Bcdedit

    Operating on a store

    • /createstore - Creates a new empty boot configuration data store.

    • /export - Exports the contents of the system store into a file. This file can be used later to restore the state of the system store. This command is valid only for the system store.

    • /import - Restores the state of the system store by using a backup data file previously generated by using the /export option. This command deletes any existing entries in the system store before the import takes place. This command is valid only for the system store.

    • /store - This option can be used with most BCDedit commands to specify the store to be used. If this option is not specified, then BCDEdit operates on the system store. Running the bcdedit /store command by itself is equivalent to running the bcdedit /enum active command.

    • /sysstore - Sets the system store device. This only affects EFI-based systems. It does not persist across reboots, and is only used in cases where the system store device is ambiguous.

    Operating on entries in a store

    • /copy - Makes a copy of a specified boot entry in the same system store.

    • /create - Creates a new entry in the boot configuration data store. If a well-known identifier is specified, then the /application, /inherit, and /device options cannot be specified. If an identifier is not specified or not well known, an /application, /inherit, or /device option must be specified.

    • /delete - Deletes an element from a specified entry.

    • /mirror - Creates mirror of entries in the store.

    Changing entry options

    • /deletevalue - Deletes a specified element from a boot entry.

    • /set - Sets an entry option value.

    Controlling output

    • /enum - Lists entries in a store. The /enum option is the default value for BCEdit, so running the bcdedit command without options is equivalent to running the bcdedit /enum active command.

    • /v - Verbose mode. Usually, any well-known entry identifiers are represented by their friendly shorthand form. Specifying /v as a command-line option displays all identifiers in full.
      Running the bcdedit /v command by itself is equivalent to running the bcdedit /enum active /v command.

    Controlling the boot manager

    • /bootsequence - Specifies a one-time display order to be used for the next boot. This command is similar to the /displayorder option, except that it is used only the next time the computer starts. Afterwards, the computer reverts to the original display order.

    • /default - Allows you to specify which operating system will start when the time-out expires.

    • /displayorder - Specifies the display order that the boot manager uses when displaying boot options to a user.

    • /timeout - Specifies the time to wait, in seconds, before the boot manager selects the default entry.

    • /toolsdisplayorder - Specifies the display order for the boot manager to use when displaying the Tools menu.

    Emergency Management Services options

    • /bootems - Enables or disables Emergency Management Services (EMS) for the specified entry.

    • /ems - Enables or disables EMS for the specified operating system boot entry.

    • /emssettings - Sets the global EMS settings for the computer. /emssettings does not enable or disable EMS for any particular boot entry.

    Debugging

    • /bootdebug - Enables or disables the boot debugger for a specified boot entry. Although this command works for any boot entry, it is effective only for boot applications.

    • /dbgsettings - Specifies or displays the global debugger settings for the system. This command does not enable or disable the kernel debugger; use the /debug option for that purpose. To set an individual global debugger setting, use the bcdedit /setdbgsettings type value command.

    • /debug - Enables or disables the kernel debugger for a specified boot entry.

    • /hypervisorsettings - Sets the hypervisor parameters.


    Remote event logging

    • /eventsettings - Sets the global remote event logging parameters.

    • /event - Enables or disables remote event logging for an operating system entry.

    Compact


    Diskpart


    DISM


    ICACLS


    ICD


    Ipconfig


    Powercfg


    Sysprep

    • /pnp - Forces a mini-setup wizard to start at reboot so that all Plug and Play devices can be recognized

    • /generalize - This allows Sysprep to remove all system-specific data from the Sysprep image. If you're running the GUI version of Sysprep, this is a check-box option

    WinAppDeployCmd


  • Windows Shortcuts

    • ISeeTWizard
    • 26 October 2025 at 12:57

    Description

    Shortcut / Command

    Category

    Action Center

    WIN + A

    Keyboard ( Windows )

    Add a Device wizard

    %windir%System32DevicePairingWizard.exe

    Control Panel

    Add a Printer wizard

    rundll32.exe shell32.dll,SHHelpShortcuts_RunDLL AddPrinter

    Control Panel

    Add Hardware wizard

    %windir%System32hdwwiz.exe

    Control Panel

    Additional Clocks

    rundll32.exe shell32.dll,Control_RunDLL timedate.cpl,,1

    Control Panel

    Administrative Tools

    control /name Microsoft.AdministrativeTools

    Control Panel

    Administrative Tools

    control admintools

    Control Panel

    AutoPlay

    control /name Microsoft.AutoPlay

    Control Panel

    Backup and Restore ( Windows 7)

    control /name Microsoft.BackupAndRestoreCenter

    Control Panel

    BitLocker Drive Encryption

    control /name Microsoft.BitLockerDriveEncryption

    Control Panel

    Clipboard History

    WIN + V

    Keyboard ( Windows )

    Close active virtual desktop

    WIN + CTRL + F4

    Keyboard ( Windows )

    Color and Appearance

    explorer shell:::{ED834ED6-4B5A-4bfe-8F11-A626DCB6A921} -Microsoft.PersonalizationpageColorization

    Control Panel

    Color Management

    control /name Microsoft.ColorManagement

    Control Panel

    Computer Management

    compmgmt.msc

    MMC / MSC

    Credential Manager

    control /name Microsoft.CredentialManager

    Control Panel

    Date and Time (Additional Clocks)

    rundll32.exe shell32.dll,Control_RunDLL timedate.cpl,,1

    Control Panel

    Date and Time (Date and Time)

    control /name Microsoft.DateAndTime

    Control Panel

    Date and Time (Date and Time)

    control timedate.cpl

    Control Panel

    Date and Time (Date and Time)

    control date/time

    Control Panel

    Date and Time (Date and Time)

    rundll32.exe shell32.dll,Control_RunDLL timedate.cpl,,0

    Control Panel

    Default Programs

    control /name Microsoft.DefaultPrograms

    Control Panel

    Desktop Background

    explorer shell:::{ED834ED6-4B5A-4bfe-8F11-A626DCB6A921} -Microsoft.PersonalizationpageWallpaper

    Control Panel

    Desktop Icon Settings

    rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,0

    Control Panel

    Device Manager

    devmgmt.msc

    MMC / MSC

    Device Manager

    control /name Microsoft.DeviceManager

    Control Panel

    Device Manager

    control hdwwiz.cpl

    Control Panel

    Device Manager

    devmgmt.msc

    MMC / MSC

    Devices and Printers

    control /name Microsoft.DevicesAndPrinters

    Control Panel

    Devices and Printers

    control printers

    Control Panel

    Dictation Toolbar

    WIN + H

    Keyboard ( Windows )

    Disk Manager

    diskmgmt.msc

    MMC / MSC

    Ease of Access Center

    control /name Microsoft.EaseOfAccessCenter

    Control Panel

    Ease of Access Center

    control access.cpl

    Control Panel

    Empty Console

    MMC.exe

    MMC / MSC

    Establish a connection to a remote PowerShell session (Computer)
    Needs to be entered within an elevated PowerShell Command Line

    etsn

    PowerShell

    Event Viewer

    eventvwr.msc

    MMC / MSC

    exit PowerShell session
    needs to be run in an elevated PowerShell Command Line

    exsn

    PowerShell

    Explorer

    WIN + E

    Keyboard ( Windows )

    Feedback Hub

    WIN + F

    Keyboard ( Windows )

    File Explorer Options (General tab)

    control /name Microsoft.FolderOptions

    Control Panel

    File Explorer Options (General tab)

    control folders

    Control Panel

    File Explorer Options (General tab)

    rundll32.exe shell32.dll,Options_RunDLL 0

    Control Panel

    File Explorer Options (Search tab)

    rundll32.exe shell32.dll,Options_RunDLL 2

    Control Panel

    File Explorer Options (View tab)

    rundll32.exe shell32.dll,Options_RunDLL 7

    Control Panel

    File History

    control /name Microsoft.FileHistory

    Control Panel

    Fonts

    control /name Microsoft.Fonts

    Control Panel

    Fonts

    control fonts

    Control Panel

    Game Capturing

    WIN + G

    Keyboard ( Windows )

    Game Controllers

    control /name Microsoft.GameControllers

    Control Panel

    Game Controllers

    control joy.cpl

    Control Panel

    Get Programs

    control /name Microsoft.GetPrograms

    Control Panel

    Get Programs

    rundll32.exe shell32.dll,Control_RunDLL appwiz.cpl,,1

    Control Panel

    Group Policy Editor

    gpedit.msc

    MMC / MSC

    HomeGroup

    control /name Microsoft.HomeGroup

    Control Panel

    Hyper-V Manager

    virtmgmt.msc

    MMC / MSC

    Indexing Options

    control /name Microsoft.IndexingOptions

    Control Panel

    Indexing Options

    rundll32.exe shell32.dll,Control_RunDLL srchadmin.dll

    Control Panel

    Infrared

    control /name Microsoft.Infrared

    Control Panel

    Infrared

    control irprops.cpl

    Control Panel

    Infrared

    control /name Microsoft.InfraredOptions

    Control Panel

    Internet Properties (Advanced tab)

    rundll32.exe shell32.dll,Control_RunDLL inetcpl.cpl,,6

    Control Panel

    Internet Properties (Connections tab)

    rundll32.exe shell32.dll,Control_RunDLL inetcpl.cpl,,4

    Control Panel

    Internet Properties (Content tab)

    rundll32.exe shell32.dll,Control_RunDLL inetcpl.cpl,,3

    Control Panel

    Internet Properties (General tab)

    control /name Microsoft.InternetOptions

    Control Panel

    Internet Properties (General tab)

    control inetcpl.cpl

    Control Panel

    Internet Properties (General tab)

    rundll32.exe shell32.dll,Control_RunDLL inetcpl.cpl,,0

    Control Panel

    Internet Properties (Privacy tab)

    rundll32.exe shell32.dll,Control_RunDLL inetcpl.cpl,,2

    Control Panel

    Internet Properties (Programs tab)

    rundll32.exe shell32.dll,Control_RunDLL inetcpl.cpl,,5

    Control Panel

    Internet Properties (Security tab)

    rundll32.exe shell32.dll,Control_RunDLL inetcpl.cpl,,1

    Control Panel

    iSCSI Initiator

    control /name Microsoft.iSCSIInitiator

    Control Panel

    Keyboard

    control /name Microsoft.Keyboard

    Control Panel

    Keyboard

    control keyboard

    Control Panel

    Language

    control /name Microsoft.Language

    Control Panel

    Lock Session

    WIN + L

    Keyboard ( Windows )

    Mouse Properties (Buttons tab 0)

    control /name Microsoft.Mouse

    Control Panel

    Mouse Properties (Buttons tab 0)

    control main.cpl

    Control Panel

    Mouse Properties (Buttons tab 0)

    control mouse

    Control Panel

    Mouse Properties (Buttons tab 0)

    rundll32.exe shell32.dll,Control_RunDLL main.cpl,,0

    Control Panel

    Mouse Properties (Hardware tab 4)

    control main.cpl,,4

    Control Panel

    Mouse Properties (Hardware tab 4)

    rundll32.exe shell32.dll,Control_RunDLL main.cpl,,4

    Control Panel

    Mouse Properties (Pointer Options tab 2)

    control main.cpl,,2

    Control Panel

    Mouse Properties (Pointer Options tab 2)

    rundll32.exe shell32.dll,Control_RunDLL main.cpl,,2

    Control Panel

    Mouse Properties (Pointers tab 1)

    control main.cpl,,1

    Control Panel

    Mouse Properties (Pointers tab 1)

    rundll32.exe shell32.dll,Control_RunDLL main.cpl,,1

    Control Panel

    Mouse Properties (Wheel tab 3)

    control main.cpl,,3

    Control Panel

    Mouse Properties (Wheel tab 3)

    rundll32.exe shell32.dll,Control_RunDLL main.cpl,,3

    Control Panel

    Network and Sharing Center

    control /name Microsoft.NetworkAndSharingCenter

    Control Panel

    Network Connections

    control ncpa.cpl

    Control Panel

    Network Connections

    control netconnections

    Control Panel

    Network Setup Wizard

    control netsetup.cpl

    Control Panel

    New virtual desktop

    WIN + CTRL + D

    Keyboard ( Windows )

    Notification Area Icons

    explorer shell:::{05d7b0f4-2121-4eff-bf6b-ed3f69b894d9}

    Control Panel

    ODBC Data Source Administrator

    control odbccp32.cpl

    Control Panel

    Offline Files

    control /name Microsoft.OfflineFiles

    Control Panel

    Performance Monitor

    perfmon.msc

    MMC / MSC

    Performance Options (Data Execution Prevention)

    %windir%system32SystemPropertiesDataExecutionPrevention.exe

    Control Panel

    Performance Options (Visual Effects)

    %windir%system32SystemPropertiesPerformance.exe

    Control Panel

    Personalization

    explorer shell:::{ED834ED6-4B5A-4bfe-8F11-A626DCB6A921}

    Control Panel

    Phone and Modem

    control /name Microsoft.PhoneAndModem

    Control Panel

    Phone and Modem

    control telephon.cpl

    Control Panel

    Power Options

    control /name Microsoft.PowerOptions

    Control Panel

    Power Options

    control powercfg.cpl

    Control Panel

    Power Options - Advanced settings

    control powercfg.cpl,,1

    Control Panel

    Power Options - Create a Power Plan

    control /name Microsoft.PowerOptions /page pageCreateNewPlan

    Control Panel

    Power Options - Edit Plan Settings

    control /name Microsoft.PowerOptions /page pagePlanSettings

    Control Panel

    Power Options - System Settings

    control /name Microsoft.PowerOptions /page pageGlobalSettings

    Control Panel

    Presentation Settings

    %windir%system32PresentationSettings.exe

    Control Panel

    Print Management

    printmanagement.msc

    MMC / MSC

    Programs and Features

    control /name Microsoft.ProgramsAndFeatures

    Control Panel

    Programs and Features

    control appwiz.cpl

    Control Panel

    Purges the DNS Resolver cache

    ipconfig /flushdns

    Command Prompt

    Quick Link Menu

    WIN + X

    Keyboard ( Windows )

    Recovery

    control /name Microsoft.Recovery

    Control Panel

    Refreshes all DHCP leases and re-registers DNS names

    ipconfig /registerdns

    Command Prompt

    Region (Administrative tab)

    control /name Microsoft.RegionalAndLanguageOptions /page /p:"Administrative"

    Control Panel

    Region (Formats tab)

    control /name Microsoft.RegionAndLanguage

    Control Panel

    Region (Formats tab)

    control /name Microsoft.RegionalAndLanguageOptions /page /p:"Formats"

    Control Panel

    Region (Formats tab)

    control intl.cpl

    Control Panel

    Region (Formats tab)

    control international

    Control Panel

    Region (Location tab)

    control /name Microsoft.RegionalAndLanguageOptions /page /p:"Location"

    Control Panel

    RemoteApp and Desktop Connections

    control /name Microsoft.RemoteAppAndDesktopConnections

    Control Panel

    Run / Execute a program

    WIN + R

    Keyboard ( Windows )

    Scanners and Cameras

    control /name Microsoft.ScannersAndCameras

    Control Panel

    Scanners and Cameras

    control sticpl.cpl

    Control Panel

    SCCM Configuration Manager

    control smscfgrc

    Control Panel

    Screen Saver Settings

    rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,1

    Control Panel

    Screenshot

    WIN + PrtScr

    Keyboard ( Windows )

    Search

    WIN + S

    Keyboard ( Windows )

    Security and Maintenance

    control /name Microsoft.ActionCenter

    Control Panel

    Security and Maintenance

    control wscui.cpl

    Control Panel

    Services Manager

    services.msc

    MMC / MSC

    Set Associations

    control /name Microsoft.DefaultPrograms /page pageFileAssoc

    Control Panel

    Set Default Programs

    control /name Microsoft.DefaultPrograms /page pageDefaultProgram

    Control Panel

    Set Program Access and Computer Defaults

    rundll32.exe shell32.dll,Control_RunDLL appwiz.cpl,,3

    Control Panel

    Sound (Communications tab)

    %windir%System32rundll32.exe shell32.dll,Control_RunDLL mmsys.cpl,,3

    Control Panel

    Sound (Playback tab)

    control /name Microsoft.Sound

    Control Panel

    Sound (Playback tab)

    control mmsys.cpl

    Control Panel

    Sound (Playback tab)

    %windir%System32rundll32.exe shell32.dll,Control_RunDLL mmsys.cpl,,0

    Control Panel

    Sound (Recording tab)

    %windir%System32rundll32.exe shell32.dll,Control_RunDLL mmsys.cpl,,1

    Control Panel

    Sound (Sounds tab)

    %windir%System32rundll32.exe shell32.dll,Control_RunDLL mmsys.cpl,,2

    Control Panel

    Speech Recognition

    control /name Microsoft.SpeechRecognition

    Control Panel

    Storage Spaces

    control /name Microsoft.StorageSpaces

    Control Panel

    Switch between virtual desktops

    WIN + CTRL + Arrow Left or Right

    Keyboard ( Windows )

    Sync Center

    control /name Microsoft.SyncCenter

    Control Panel

    System

    control /name Microsoft.System

    Control Panel

    System

    control sysdm.cpl

    Control Panel

    System Icons

    explorer shell:::{05d7b0f4-2121-4eff-bf6b-ed3f69b894d9} SystemIcons,,0

    Control Panel

    System Properties (Advanced)

    %windir%System32SystemPropertiesAdvanced.exe

    Control Panel

    System Properties (Computer Name)

    %windir%System32SystemPropertiesComputerName.exe

    Control Panel

    System Properties (Hardware)

    %windir%System32SystemPropertiesHardware.exe

    Control Panel

    System Properties (Remote)

    %windir%System32SystemPropertiesRemote.exe

    Control Panel

    System Properties (System Protection)

    %windir%System32SystemPropertiesProtection.exe

    Control Panel

    Tablet PC Settings

    control /name Microsoft.TabletPCSettings

    Control Panel

    Task Sheduler

    taskschd.msc

    MMC / MSC

    Task View

    WIN + TAB

    Keyboard ( Windows )

    Text to Speech

    control /name Microsoft.TextToSpeech

    Control Panel

    TPM Manager

    tpm.msc

    MMC / MSC

    Troubleshooting

    explorer shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}::{C58C4893-3BE0-4B45-ABB5-A63E4B8C8651}

    Control Panel

    User Accounts

    control /name Microsoft.UserAccounts

    Control Panel

    User Accounts

    control userpasswords

    Control Panel

    User Accounts (netplwiz)

    netplwiz

    Control Panel

    User Accounts (netplwiz)

    control userpasswords2

    Control Panel

    Windows 10 Settings

    WIN + I

    Keyboard ( Windows )

    Windows Defender Firewall

    control /name Microsoft.WindowsFirewall

    Control Panel

    Windows Defender Firewall

    control firewall.cpl

    Control Panel

    Windows Defender Firewall Allowed apps

    explorer shell:::{4026492F-2F69-46B8-B9BF-5654FC07E423} -Microsoft.WindowsFirewallpageConfigureApps

    Control Panel

    Windows Defender Firewall with Advanced Security

    %WinDir%System32WF.msc

    MMC / MSC

    Windows Features

    %windir%System32OptionalFeatures.exe

    Control Panel

    Windows Features

    rundll32.exe shell32.dll,Control_RunDLL appwiz.cpl,,2

    Control Panel

    Windows Mobility Center

    control /name Microsoft.MobilityCenter

    Control Panel

    Work Folders

    %windir%System32WorkFolders.exe

    Control Panel

  • Additional settings for power buttons

    • ISeeTWizard
    • 26 October 2025 at 12:55

    The registry path HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Power\PowerSettings\4f971e89-eebd-4455-a8de-9e59040e7347\833a6b62-dfa4-46d1-82f8-e09e34d029d6 refers to a specific setting within Windows ' power management system. This particular path controls the "Minimum power saving" setting within the "Processor power management" category for the "Active" power plan.

    To elaborate, this registry entry allows users to configure the minimum performance state of the processor when the system is actively in use. Modifying this setting can impact the system's responsiveness and power consumption.

    Code
    Windows Registry Editor Version 5.00
    
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Power\PowerSettings\4f971e89-eebd-4455-a8de-9e59040e7347\833a6b62-dfa4-46d1-82f8-e09e34d029d6]
    "Attributes"=dword:00000000

    Files

    Additional-settings-for-power-buttons.reg 218 Byte – 90 Downloads
  • Additional Screen Power Settings

    • ISeeTWizard
    • 26 October 2025 at 12:54

    Under the registry key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Power\PowerSettings\7516b95f-f776-4464-8c53-06167f40cc99, you can find settings related to the "Console lock display off timeout" feature in Windows . Specifically, this key contains settings that control how long the screen remains on after the console (lock screen) is active before automatically turning off.

    Code
    Windows Registry Editor Version 5.00
    
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Power\PowerSettings\7516b95f-f776-4464-8c53-06167f40cc99\A9CEB8DA-CD46-44FB-A98B-02AF69DE4623]
    "Attributes"=dword:00000000
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Power\PowerSettings\7516b95f-f776-4464-8c53-06167f40cc99\FBD9AA66-9553-4097-BA44-ED6E9D65EAB8]
    "Attributes"=dword:00000000
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Power\PowerSettings\7516b95f-f776-4464-8c53-06167f40cc99\90959d22-d6a1-49b9-af93-bce885ad335b]
    "Attributes"=dword:00000000
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Power\PowerSettings\7516b95f-f776-4464-8c53-06167f40cc99\EED904DF-B142-4183-B10B-5A1197A37864]
    "Attributes"=dword:00000000
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Power\PowerSettings\7516b95f-f776-4464-8c53-06167f40cc99\82DBCF2D-CD67-40C5-BFDC-9F1A5CCD4663]
    "Attributes"=dword:00000000
    Display More

    Files

    Additional-screen-power-options.reg 930 Byte – 93 Downloads
  • Show RunAs Different User in Start

    • ISeeTWizard
    • 26 October 2025 at 12:53

    In some Windows 11 Installations the "RunAs" option is missing within the start menu - with this little registry tweak here you can activate this again.
    Don't forget to reboot after adding/changing this.

    Code
    Windows Registry Editor Version 5.00
    
    [HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\Explorer]
    "ShowRunAsDifferentUserInStart"=dword:00000001

Did you know…?

“You have to believe in yourself when no one else does.”

Serena Williams

“The world you desire can be won. It exists... it is real... it is possible... it’s yours.”

Ayn Rand

“Good friends, good books, and a sleepy conscience: This is the ideal life.”

Mark Twain

“Get busy living or get busy dying.”

Stephen King

“I believe that if you’ll just stand up and go, life will open up for you. Something just motivates you to keep moving.”

Tina Turner

“There is no perfection, only life.”

Milan Kundera

“Life has no limitations, except the ones you make.”

Les Brown

“Live in the sunshine, swim the sea, drink the wild air.”

Ralph Waldo Emerson

“My wish for you is that you continue. Continue to be who you are, to astonish a mean world with your acts of kindness.”

Maya Angelou

“It is during our darkest moments that we must focus to see the light.”

Aristotle

“The purpose of life is to live it, to taste experience to the utmost, to reach out eagerly and without fear for newer and richer experience.”

Eleanor Roosevelt

“In three words I can sum up everything I’ve learned about life: It goes on.”

Robert Frost

“The only thing we have to fear is fear itself.”

Franklin D. Roosevelt

“There’s love enough in this world for everybody, if people will just look.”

Kurt Vonnegut

“Nothing is impossible. The word itself says ‘I’m possible!’”

Audrey Hepburn

“We must let go of the life we have planned, so as to accept the one that is waiting for us.”

Joseph Campbell

“If you don’t have any shadows, you’re not in the light.”

Lady Gaga

“It is better to fail in originality than to succeed in imitation.”

Herman Melville

“Never let the fear of striking out keep you from playing the game.”

Babe Ruth

“The art of life is to know how to enjoy a little and to endure very much.”

William Hazlitt

“Before anything else, preparation is the key to success.”

Alexander Graham Bell

“Be yourself; everyone else is already taken.”

Oscar Wilde

You cannot change what you refuse to confront.

“Everything you can imagine is real.”

Pablo Picasso

“You only live once, but if you do it right, once is enough.”

Mae West

“Be persistent and never give up hope.”

George Lucas

“The future is not something we enter. The future is something we create.”

Leonard I. Sweet

“Living might mean taking chances, but they’re worth taking.”

Lee Ann Womack

“You may not control all the events that happen to you, but you can decide not to be reduced by them.”

Maya Angelou

“All dreams are within reach. All you have to do is keep moving towards them.”

Viola Davis

“It’s amazing how a little tomorrow can make up for a whole lot of yesterday.”

John Guare

“Find out who you are and do it on purpose.”

Dolly Parton

“There are so many great things in life; why dwell on negativity?”

Zendaya

“Failure is a great teacher and, if you are open to it, every mistake has a lesson to offer.”

Oprah Winfrey

“Spread love everywhere you go. Let no one ever come without leaving happier.”

Mother Teresa

“Don’t take yourself too seriously. Know when to laugh at yourself, and find a way to laugh at obstacles that inevitably present themselves.”

Halle Bailey

“When I let go of what I am, I become what I might be.”

Lao Tzu

“Next time, ask ‘What’s the worst that will happen?’ Then push yourself a little further than you dare.”

Audre Lorde

“For me, becoming isn’t about arriving somewhere or achieving a certain aim. I see it instead as forward motion, a means of evolving, a way to reach continuously toward a better self. The journey doesn’t end.”

Michelle Obama

“Keep smiling, because life is a beautiful thing and there’s so much to smile about.”

Marilyn Monroe

“We are here to add what we can to life, not to get what we can from life.”

William Osler

“Whatever we are, whatever we make of ourselves, is all we will ever have—and that, in its profound simplicity, is the meaning of life.”

Philip Appleman

“There is no passion to be found playing small—in settling for a life that is less than the one you are capable of living.”

Nelson Mandela

“You can’t help what you feel, but you can help how you behave.”

Margaret Atwood

“The biggest adventure you can take is to live the life of your dreams.”

Oprah Winfrey

“It does not matter how slowly you go, as long as you do not stop.”

Confucius

“Ambition is the path to success. Persistence is the vehicle you arrive in.”

Bill Bradley

“The great courageous act that we must all do is to have the courage to step out of our history and past so that we can live our dreams.”

Oprah Winfrey

“The fear of death follows from the fear of life. A man who lives fully is prepared to die at any time.”

Mark Twain

“If you have knowledge, let others light their candles in it.”

Margaret Fuller

“I may not have gone where I intended to go, but I think I have ended up where I needed to be.”

Douglas Adams

“When you have a dream, you’ve got to grab it and never let go.”

Carol Burnett

“It is never too late to be what you might have been.”

George Elliot

“The new dawn blooms as we free it. For there is always light if only we’re brave enough to see it, if only we’re brave enough to be it.”

Amanda Gorman

“Do one thing every day that scares you.”

Eleanor Roosevelt

“Dreaming, after all, is a form of planning.”

Gloria Steinem

“Don’t judge each day by the harvest you reap but by the seeds that you plant.”

Robert Louis Stevenson

“We have to dare to be ourselves, however frightening or strange that self may prove to be.”

May Sarton

“Keep your face towards the sunshine and shadows will fall behind you.”

Walt Whitman

“I’m not going to continue knocking that old door that doesn’t open for me. I’m going to create my own door and walk through that.”

Ava DuVernay

“No need to hurry. No need to sparkle. No need to be anybody but oneself.”

Virginia Woolf

“Some people want it to happen, some wish it would happen, others make it happen.”

Michael Jordan

“Dream big and dare to fail.”

Norman Vaughan

“We make a living by what we get, but we make a life by what we give.”

Winston Churchill

“It is better to be hated for what you are than to be loved for what you are not.”

Andre Gide

“Yesterday is but today’s memory and tomorrow is today’s dream.”

Khalil Gibran

“We pass through this world but once.”

Stephen Jay Gould

“You will face many defeats in life, but never let yourself be defeated.”

Maya Angelou

“Don’t worry about failure, you only have to be right once.”

Drew Houston

“Success is stumbling from failure to failure with no loss of enthusiasm.”

Winston Churchill

“Life is very interesting…in the end, some of your greatest pains become your greatest strengths.”

Drew Barrymore

“Always go with your passions. Never ask yourself if it’s realistic or not.”

Deepak Chopra

“Life is like riding a bicycle. To keep your balance, you must keep moving.”

Albert Einstein

“Once you face your fear, nothing is ever as hard as you think.”

Olivia Newton-John

“Life does not have to be perfect to be wonderful.”

Annette Funicello

“Life isn’t about finding yourself. Life is about creating yourself.”

George Bernard Shaw

“If you live long enough, you’ll make mistakes. But if you learn from them, you’ll be a better person.”

Bill Clinton

“Be where you are; otherwise you will miss your life.”

Buddha

“Always remember that you are absolutely unique. Just like everyone else.”

Margaret Mead

“And when you want something, all the universe conspires in helping you achieve it.”

Paulo Coelho

“For the great doesn’t happen through impulse alone, and is a succession of little things that are brought together.”

Vincent Van Gogh

“Dreams do not come true just because you dream them. It’s hard work that makes things happen. It’s hard work that creates change.”

Shonda Rhimes

“Just when you think it can’t get any worse, it can. And just when you think it can’t get any better, it can.”

Nicholas Sparks

“You don’t always need a plan. Sometimes you just need to breathe, trust, let go and see what happens.”

Mandy Hale

“The simple things are also the most extraordinary things, and only the wise can see them.”

Paulo Coelho

“One of the deep secrets of life is that all that is really worth doing is what we do for others.”

Lewis Carroll

“Tomorrow is a new day. You shall begin it serenely and with too high a spirit to be encumbered with your old nonsense.”

Ralph Waldo Emerson

“Let us make our future now, and let us make our dreams tomorrow’s reality.”

Malala Yousafzai

“Coming together is a beginning; keeping together is progress; working together is success.”

Henry Ford

“I’m not going to continue knocking on that old door that doesn’t open for me. I’m going to create my own door and walk through that.”

W.P. Kinsella

“The future belongs to those who believe in the beauty of their dreams.”

Eleanor Roosevelt

“Life is a daring adventure or it is nothing at all.”

Helen Keller

“If you don’t like the road you’re walking, start paving another one.”

Dolly Parton

“Always do your best. What you plant now, you will harvest later.”

Og Mandino

“To succeed in life, you need three things: a wishbone, a backbone, and a funnybone.”

Reba McEntire

“Life is what happens to you when you are busy making other plans.”

John Lennon

“There are no regrets in life. Just lessons.”

Jennifer Aniston

“Be sure you put your feet in the right place, then stand firm.”

Abraham Lincoln

“The future belongs to those who prepare for it today.”

Malcolm X

“You can be everything. You can be the infinite amount of things that people are.”

Kesha

“Life is made of ever so many partings welded together.”

Charles Dickens

Latest Posts

  1. Tim Cook to become Apple Executive Chairman / John Ternus to become Apple CEO

    ISeeTWizard
    21 April 2026 at 07:28
  2. Johny Srouji named Apple’s Chief Hardware Officer

    ISeeTWizard
    21 April 2026 at 07:25
  3. Apple accelerates environmental progress with highest‑ever recycled material in its products

    ISeeTWizard
    16 April 2026 at 15:36
  4. Slow Windows?

    ISeeTWizard
    13 April 2026 at 08:49
  5. New rating system

    ISeeTWizard
    12 April 2026 at 09:16

Visits

  • 12 Today
  • 36 Yesterday
  • 12 This Week
  • 270 Last Week
  • 94 This Month
  • 1,487 Last Month
  • 1,661 This Year
  • 0 Last Year
  • Ø 46.14 per day
  • 1,661 Total

Last updated: 4 May 2026 at 19:11

  1. Cookie Policy
  2. Privacy Policy
  3. Contact
  4. Legal Notice
Powered by WoltLab Suite™
Style: Ambience by cls-design
Stylename
Ambience
Manufacturer
cls-design
Licence
Commercial styles
Help
Supportforum
Visit cls-design