How to enable telnet on Windows 10 No further Introduction is needed for this tool … Open command line as an administrator and write the following command. Hit enter & your’re done!
1 |
dism /online /Enable-Feature /FeatureName:TelnetClient |
How to enable telnet on Windows 10 No further Introduction is needed for this tool … Open command line as an administrator and write the following command. Hit enter & your’re done!
1 |
dism /online /Enable-Feature /FeatureName:TelnetClient |
Create Windows 10 bootable usb from linux tested on Ubuntu 18.04. Download windows 10 iso from here Install woeusb from source (tested on ubuntu 18.04)
1 2 3 4 5 6 7 8 |
git clone https://github.com/slacka/WoeUSB.git cd WoeUSB/ ./setup-development-environment.bash sudo apt-get install devscripts equivs gdebi-core mk-build-deps sudo gdebi woeusb-build-deps_*.deb dpkg-buildpackage -uc -b sudo gdebi ../woeusb*.deb |
Make it bootable with woeusb
1 |
sudo woeusb --device win_10.iso /dev/sde --target-filesystem NTFS |
Tip: If woeusb starts to complain for mounted device etc … Unmount and unplug the usb device. Plug the usb and unmount the […]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
This is how to disable balloon tips in windows by using a registry entry. It's very simple also for those who dont have an idea about registry and similar stuff! For those who's in touch with windows registry! Check Below..... <strong><em>Hive: HKEY_CURRENT_USER Key: Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced </em></strong> <strong><em>Name: EnableBalloonTips </em></strong> <strong><em>Type: REG_DWORD </em></strong> <strong><em>Value: 0 disables tips</em></strong> For those who don't! 1. Open regedit.exe by pressing CTRL r on keyboard (run) 2. Type regedit or <strong><em>regedit.exe</em></strong> Now you will see regedit and some folders left inside. 3. Go to path by clicking the folders: <strong><em>HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced</em></strong> 4. Now check right side pane, you should see some registry values right click anywhere else than a reg value and create a <em><strong>DWORD</strong></em> value. 5. Name it "<em><strong>EnableBallonTips</strong></em>" 6. Open It by double click on it and as a value type '<strong>0</strong>'. 7. Exit Registry 8. Reboot 9. Done! Remember: Everything without quotes!!! |