- Click on the Windows key + i (or open Settings from the Start Menu)
- Click on System from the sidebar menu (you should already be in this menu)
- In the main window, look for Recovery and click it
- Click on ‘Advanced Startup’
- A pop up will tell you ‘We will reboot your device, so save your work’
- Click on ‘Restart Now’
- Wait for the reboot.
How to identify the Private Address Ranges
The Internet Assigned Numbers Authority (IANA) has assigned several address ranges to be used by private networks.
Address ranges to be use by private networks are:
- Class A : 10.0.0.0 to 10.255.255.255
- Class B : 172.16.0.0 to 172.31.255.255
- Class C : 192.168.0.0 to 192.168.255.255
I hope you will find this topic useful.
[mai mult...]Upgrade windows 11 to unsupported hardware
- First of all you need to download from microsoft.com the win 10 iso file.
- Second you create a folder named “Windows 11 install” on your desktop
- Then you download from microsoft.com the win 11 iso file.
- Then you need to mount the windows 10 iso file and copy all the files to the folder that you created on desktop.
- Then you mount the win 11 iso file.
- In the “sources” subfolder you will find a file called “install.wim”
- you need to copy that file to the same location but on your “windows 11 install” folder that you created on your desktop.
- Then you open again the “Windows 11 install” folder and click on the “install” tab and you’re good to go.
How to fix freezing Windows 10
- Right click on taskbar and open “task manager”
- Scroll down to the bottom of the tab and select “windows explorer”
- Right click on the “windows explorer” tab and select “Restart”.
How to speed up your Windows 10 system
- Type in the search box “advanced system settings ” and press enter
- Then open the “advanced” tab and click on the “settings: button
- After that select the “adjust for best performance” tab and press the Apply button, and you’re done.
How to read data from files with C++
- Include the fstream header file with using std::ifstream;
- Declare a variable of type ifstream
- Open the file
- Check for an open file error
- Read from the file
- After each read, check for end-of-file using the eof() member function.
Example:
#include <iostream> using std::cerr; using std::cout; using std::endl; #include <fstream> using std::ifstream; #include <cstdlib> // for exit function // This program reads values from the file 'example.dat' // and echoes them to the display until a negative value // is read. int main() { ifstream indata; // indata is like cin int num; // variable for input value indata.open("example.dat"); // opens the file if(!indata) { // file couldn't be opened cerr << "Error: file could not be opened" << endl; exit(1); } indata >> num; while ( !indata.eof() ) { // keep reading until end-of-file cout << "The next number is " << num << endl; indata >> num; // sets EOF flag if no value found } indata.close(); cout << "End-of-file reached.." << endl; return 0; }[mai mult...]
How to unlock a locked account in Windows 10
- Log in to your main windows account (administrator )
- Open ” run ” command
- type in ” lusrmgr.msc ” in the run command box and press enter
- double click on the ” Users ” folder
- then double click on the account which is locked ; in our case ” User “
- uncheck the “account is locket out ” box and press OK
How to create a secure folder in Windows 10
- Open the cmd.exe in administrator mode
- Search the folder you want to secure : for example our folder will be named “test”
- Then type in cmd.exe the following lock command : Cacls “D:\test” /E /P everyone:n ; After that your folder is secured/locked
- Then when you want to open/move/delete the “test” folder you will need administrator privillege.
- To unlock the folder, type in cmd.exe the following unlock command : Cacls “D:\test” everyone:f ; After that your folder returns to the initial form
How to return to Windows 10 desktop from windows tiles
In this presentation i will tell you how to get rid of Windows 10 tiles from Windows desktop.
[mai mult...]