RDP Windows 11 with Microsoft Account MFA

Based on the explanation on the site nready.net Just fill the password cache on the server machine (the remote one) If you have a Microsoft Account and maybe never typed a password in Windows Trying to log in via RD, but “Your credentials are not working. The credentials you used to connect to computer xxx are not working. Enter new credentials.” Ctrl+R -> runas /u:MicrosoftAccount\[email protected] cmd.exe It will run the cmd with those credentials but also fill the local cache with the password Now you will be able to log in via Remote Desktop Client “Twoje poświadczenia nie działają....

July 12, 2023

Software Performance

Software Performance Notes In Series: Software Performance: A Statistical Perspective Software Performance: Cache Coherency And NUMA Software Performance: Cache Locality And Allocation Software Performance: Generic Tricks Software Performance: Systems Optimizations

May 28, 2023

Test  [Draft]

Rozpisać kolejne kroki konwersji na liczbę w notacji binarnej za pomocą metody z resztą: Przykład: liczba: 108 108 : 2 = 54 (reszta: 0) 54 : 2 = 27 (reszta: 0) 27 : 2 = 13 (reszta: 1) 13 : 2 = 6 (reszta: 1) 6 : 2 = 3 (reszta: 0) 3 : 2 = 1 (reszta: 1) 1 : 2 = 0 (reszta: 1) Liczby do zamiany: 1. 91 2....

April 25, 2023

Zadania  [Draft]

Lab_06: Ćwiczenie: Proszę uruchomić pierwszy program $lab_06_a.exe Proszę opisać kolejne cykle rozkazowe, jakie wykonuje procesor. Należy zamieścić wynik działania programu w sprawozdaniu. 1 2 3 4 5 6 7 memory = [10, 6, 7, 2, 1, 0, 0] instructions = [ ("LOAD", 0, 0), ("LOAD", 1, 2), ("ADD", 0, 1), ("STORE", 0, 0), ] Proszę uruchomić drugi program $lab_06_b.exe Należy zamieścić wynik działania programu w sprawozdaniu. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 memory = [10, 6, 7, 2, 1, 0, 0] instructions = [ ("LOAD", 0, 0), ("LOAD", 1, 2), ("ADD", 0, 1), ("STORE", 0, 0), ("LOAD", 3, 1), ("LOAD", 2, 3), ("SUB", 3, 2), ("STORE", 1, 3), ("JNZERO", 3, -9), ] Lab_07...

April 25, 2023

Ventoy

Ventoy is an open source tool to create bootable USB drive for ISO/WIM/IMG/VHD(x)/EFI files. With ventoy, you don’t need to format the disk over and over, you just need to copy the ISO/WIM/IMG/VHD(x)/EFI files to the USB drive and boot them directly. You can copy many files at a time and ventoy will give you a boot menu to select them. You can also browse ISO/WIM/IMG/VHD(x)/EFI files in local disks and boot them....

February 2, 2023