Depanare

FIX: Laptopul se deconectează de la Wi-Fi

Mulți utilizatori raportează probleme legate de conexiunea laptopului cu Wi-Fi-ul, mai ales atunci când WiFi-ul se deconectează frecvent. Windows 8 vine cu o mulțime de îmbunătățiri aduse acestui capitol, dar în ciuda tuturor acestor îmbunătățiri, utilizatorii încă întâmpină dificultăți cu conexiunea lor de WiFi.

Ce putem face să remediem aceste probleme?

[mai mult...]

Bluetooth Couldn’t Connect on Windows 10

The Bluetooth ‘Couldn’t connect. Try connecting again’ error is usually caused by outdated Bluetooth drivers etc. due to which users aren’t able to connect/pair with their smartphones or any other peripherals. In this modern era, everything is becoming wireless for which Bluetooth plays an essential role. This includes gaming peripherals, wireless charging, wireless speakers etc. everything requires a Bluetooth connection.

However, there are certain errors that can prevent it. Many users have recently reported this issue but an official fix from Microsoft is yet to come. No one knows how long that might be but there are several solutions that you can try to solve your problem. In this article, you’ll just find that — effective solutions that’ll solve your issue.

[mai mult...]

Crearea unui meniu intr-un batch file

1.Deschidem notepad sau orice alt text editor
2.Copiem codul de mai jos

@echo off

:START
cls
echo Choose your option & echo.
echo [I] IPCONFIG
echo [H] HOSTNAME
echo [D] DATE
echo [E] exit
choice /C IHDE /N /M “->”
goto option-%errorlevel%

:option-1 IPCONFIG
echo IPCONFIG
ipconfig
pause
goto start

:option-2 HOSTNAME
echo Hostname
hostname
pause
goto start

:option-3 DATE
echo Date
date /T
pause
goto start

:option-4 EXIT
echo Bye…
goto :EOF

3. Modificam variantele sau tastele pe care dorim sa le apasam
EX : choice /C IHDE /N /M “->”

unde I = option 1, H = option 2, D = option 3, E = option 4

4.Salvam fisierul cu extensia .bat sau .cmd
5.Modificam codul in functie de nevoie.

[mai mult...]