Install Framework 3.5 from the command line

By | 22 March 2025

It is possible to install .NET Framework 3.5 not only through Windows features but also from the command line. You can use Windows PowerShell by running the following command: Install-WindowsFeature Net-Framework-Core -source \network\share\sxs Alternatively, you can use the Command Prompt, so: Click on START, type CMD, right-click on Command Prompt, and select Run as administrator.… Read More »

Autoplay

By | 22 March 2025

In the latest versions of Windows, the Autoplay option is no longer visible in the Start menu. You can access the path by typing one of the following commands in the Run dialog from the Start menu. shell:common startup With this command, you can access the Autoplay path for all users. If you need to… Read More »

Check active ports

By | 22 March 2025

To check the active ports on your PC/Server, simply enter the following command in the Command Prompt: netstat -a If you want to save the result in an ASCII file, you can add output redirection to the command, as shown in the example below. netstat -a > c:\Active_Port.txt In the folder “C:\” , you will… Read More »