- 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...]