Cum sa scapi de alerta “low disk space” in Windows 10
Nu mai avem spatiu pe una dintre partitii, dar dorim ca windows-ul sa nu ne mai avertizeze.
[mai mult...]Soluții pentru problemele tale IT
Nu mai avem spatiu pe una dintre partitii, dar dorim ca windows-ul sa nu ne mai avertizeze.
[mai mult...]
Whether you’re video conferencing with colleagues, chatting with friends, or recording content for public consumption, audio recording quality is always important. Here’s how to get a crisp, clear, audio recording and minimize background noise on a Windows PC.
[mai mult...]Ne aflam in situatia in care dorim sa verificam ce tip de RAM folosim in configuratia noastra si la ce frecventa ruleaza aceasta.
[mai mult...]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...]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...]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.