OS - Windows

Depanare VPN 4 Solutii

instalare printer 50 Solutii

Optimizare pc 50 Solutii

Optimizare PC 103 Solutii

Scanare cu malwarebyte 4 Solutii

shareuire si mapare 15 Solutii

adaugare la domeniu 5 Solutii

Migrare profil 9 Solutii

Instalare/reinnoire certificate 2 Solutii

Personalizare sistem operare 274 Solutii

Configureaza si verifica setarile de boot 11 Solutii

Transfer de date 21 Solutii

Configurare OS 109 Solutii

Reparare OS 47 Solutii

Punct de restaurare OS 8 Solutii

Windows Event Viewer 6 Solutii

Reinstalare/reconfigurare VPN 8 Solutii

Optimizare client e-mail 12 Solutii

Optimizare PC 30 Solutii

Optimizare PC 20 Solutii

Reinstalare / Reconfigurare VPN 6 Solutii

Reinstalare OS 32 Solutii

Reparare sistem de operare 45 Solutii

Programare sistem operare 12 Solutii

Puncte de restaurare sistem de operare 14 Solutii

Instalare imprimanta 44 Solutii

Mapare si partajare 13 Solutii

Modificari firewall 12 Solutii

Migrare profil 8 Solutii

Transferuri de date 33 Solutii

Upgrade sistem operare 12 Solutii

Windows Event Viewer 7 Solutii

Verificare HDD 32 Solutii

Spatiu partitie 31 Solutii

Scanare cu MalwareBytes 5 Solutii

Setari servicii sistem operare 42 Solutii

Setari retea sistem operare 25 Solutii

Setari partitii 19 Solutii

Actualizare sistem operare 15 Solutii

Clonare HDD 11 Solutii

Compatibilitate program 13 Solutii

Instalare / Reinnoire Certificate 6 Solutii

Configurare si verificare setari de BOOT 15 Solutii

Configurare Sistem de operare 1399 Solutii

Identificare DLL-uri lipsa 2 Solutii

Depanare 1006 Solutii

Editarea politicilor de grup ale sistemului de operare 13 Solutii

Drivere 50 Solutii

Considerente pentru testarea exhaustiva a stabilitatii supratactarii memoriei ram

Pentru impartirea kiturilor de memorii ram in functie de performantele acestora, producatorii supun chipurile de memorie unor teste conform standardelor de interes (precum cele oferite de jedec). Suplimentar, producatorii pot oferi profile implicite pentru supratactarea (frecventelor) memoriilor RAM, valori ce pot fi de asemenea re-crescute de catre utilizatori.
Uneori chiar si supratactarea oferita de producator va produce instabilitate in sistem (de la coruperea datelor, BIOSului pana la blue-screens sau regresiuni de performanta). In continuare vom vedea o serie de variabile ce sunt de obicei ignorate, dar impacteaza aceste rezultate.

[mai mult...]

How to format a drive on Windows

Open Disk Management:

    • Right-click the Start button and select Disk Management or press Windows + X and choose Disk Management.

Select the Drive to Format:

    • In the Disk Management window, locate the drive you want to format (it will be listed as a volume, like “Disk 1”, “Disk 2”, etc.)
    • Right-click on the drive and select Format.

Choose Formatting Options:

    • You’ll be prompted to select the following options:
      • Volume Label: Name the drive (optional)
      • File System: Choose the file system (typically NTFS for Windows drives)
      • Allocation Unit Size: You can usually leave this at the default setting
      • Quick Format: Check this option to format the drive more quickly (recommended for most cases).

Start the Format:

    • After adjusting your options, click OK and confirm that you want to format the drive. The process will begin, and the drive will be wiped clean and formatted with the selected file system.

Finish:

    • Once the formatting process is complete, the drive will be ready for use.
[mai mult...]

How to scan for open ports (security reasons) on Windows 11

Step 1: Open CMD or Command Prompt

  • Press Win + R from your keyboard > Type cmd > Click on the Enter button
cmd_1
Open CMD

Step 2: Implement the “netstat” Command

An effective tool for keeping an eye on open ports within the system and configured network connections is the netstat command to simplify. It offers comprehensive details on all open connections and system servers, such as the protocol in use, and local and international addresses to control or verify all the connection’s status.

  • Type the below command in the cmd to check the open port functions > Press Enter
netstat -an | find "LISTEN"
cmd_2
netstat
  • See the output below
TCP    0.0.0.0:135        0.0.0.0:0        LISTENING
TCP    0.0.0.0:445       0.0.0.0:0        LISTENING
TCP    0.0.0.0:902       0.0.0.0:0        LISTENING
cmd_3
netstat list

In this case, 0.0.0.0 designates that all pre-processed network interfaces are listening on the port, which is open for the internal system server. The port number is the number that comes after the colon of the system commands (e.g., 135, 445, 3389).

Step 3: Observe the functional Process using the Port

  • Write the following command to identify which application or process is using a specific port within the system.
netstat -ano | find "LISTEN"
cmd_4
LISTEN

An extra -o flag is included with this command while processed, which shows the Process ID (PID) connected to each port manually.

  • See the output within a PID column
TCP    0.0.0.0:135        0.0.0.0:0        LISTENING      1160
TCP    0.0.0.0:445       0.0.0.0:0        LISTENING      4
  • Search and Open Task Manager > Go to Details option > See the PID column
cmd_5
LISTEN LIst

Step 4: Check Specific Port in cmd

  • You can change the implemented command to focus on a particular port if you want to see if it’s open or not within the system configuration. For instance, use this to see if port 60 is open to identify the process:
netstat -an | find ":60"
  • See the final entry below –
cmd_6
find entry
TCP    0.0.0.0:40         0.0.0.0:0        LISTENING
cmd_7
find ports
[mai mult...]

How to make your own loopback adapter for testing your switch ports

First things first you’ll need to gather the following equipment:

  • A small length of ethernet cable. Less than one foot is preferred.
  • One RJ45 connector. We recommend using one with load bars. These load bars will make the terminating process extremely easy.
  • A crimp tool, a stripping tool, and a pair of precision cutters.
  • A switch for testing.

Step one: Strip the cable

To build this loopback adapter we’re going to need to use the conductors that are inside ethernet cabling. Accessing the conductors is a simple process. Simply strip away part of the jacket. This can be an inch or two at the end of the cable or right in the middle. Once the incision is made pull away the jacket and then pull out all the conductors.

You’ll be left with 4 pairs of wires. These are the conductors that make up all patch cables. Set aside three of the pairs. Keep one pair ready for termination. We’ll be using the white & orange pair.

Step Two: Line up the conductors

A standard ethernet connection uses 4 pins to complete the connection. Pins 1 & 2 are used for sending while pins 3 & 6 are used for receiving. To set up this loopback adapter we’ll have to connect pins 1 & 3 and then 2 & 6. Trim the wires down to around 6 inches. Untwist both ends of the pairs a little bit to allow the wires to be lined up. Set the first white conductor and the first orange conductor next to each other. Then add the second white conductor next. Lastly comes the second orange conductor. You’ll have to leave enough space between this conductor and the second white conductor.

Step Three: Termination time

Now it’s time to insert these conductors into the load bar and terminate the connector. Keeping the wires lined up, slowly insert them into the load bar. Making sure the wires stay in the correct order may be slightly difficult. Once they are in the correct position push the load bar down onto the wires as far as it can go. Trim any excess wire. Insert the load bar into the connector. Use your crimp tool to crimp the RJ45 connector.

Step Four: Testing

Let’s test this thing out. Grab your switch and plug in your new loopback adapter into one of the ports. The connectivity light on the corresponding port should light up indicating a proper connection. If it does not light up check your pinout and make sure the wires are in the correct position.

It should look like this after you did every steps presented above:

Building your own loopback adapters can end up being more expensive than just buying one outright if you don’t have the equipment on hand already.

[mai mult...]