Soluții

Cum să activați și să utilizați colecțiile în Microsoft Edge

New Microsoft Edge logo

Cercetarea web a devenit puțin mai ușoară, datorită funcției Colecții din noul browser Microsoft Edge. Această caracteristică încorporată vă permite să luați fragmente de pe paginile web și să le depozitați într-un notebook pe care îl puteți accesa în Edge în sine.

Colecțiile sunt încă o caracteristică de testare, dar anterior a fost disponibilă numai pentru utilizatorii de teste Microsoft Edge Insider. Acum este inclusă cu lansarea stabilă a noului Edge bazat pe Chromium, dar necesită un pic de configurare pentru a activa funcția.

[mai mult...]

Cum să activați noul blocator de crapware Microsoft Edge.

Microsoft Edge's new logo on Windows 10's light desktop background.

Microsoft Edge are un nou blocator de crapware, dar nu este activat implicit. Acum este disponibil pentru toată lumea care utilizează browserul Edge bazat pe Chromium, cu lansarea stabilă a Edge 80 pe 7 februarie 2020.

„Aplicații potențial nedorite” sunt Crapware
Această caracteristică a browserului blochează „aplicații potențial nedorite”, care sunt cunoscute și sub denumirea de „programe potențial nedorite”. PUP-urile includ funcții neplăcute precum adware, trackere, bare de instrumente pentru browser, mineri de criptocurrency și alte mesaje pe care aproape sigur nu le doriți pe computer. PUP-urile au fost numite „malware cu o echipă legală”. Oferiți permisiunea de a instala această junk atunci când faceți clic pe acordul de licență, deci nu este malware din punct de vedere tehnic.

Microsoft nu va bloca descărcările de crapware în mod implicit în Microsoft Edge, așa că trebuie să știți că există și să vă îndreptați către Setări pentru a-l găsi. Există o comutare rapidă care va forța Edge să blocheze această junk. Funcționează similar cu opțiunea ascunsă care face ca Windows Defender să blocheze crapware-ul de pe desktop.

Edge, Chrome, Firefox și alte browsere blochează deja descărcări potențial periculoase, însă această opțiune face ca Edge să meargă și mai departe și să blocheze unele junkware-uri pe care le va permite în mod normal.

[mai mult...]

How to Create an ISO Image of Your Windows System

Need a quick and easy way to backup and restore Windows without relying on backup tools or the cloud for your personal data?

Several third-party Windows backup and restore tools are available, but they can be complicated and time-consuming to use. So, why not learn how to make an ISO image of your Windows PC instead?

Why Choose a Windows 10 Image Backup?

We all know that backing up our data is important, especially when upgrading to a new version of Windows. But rather than fiddle around with partitions for specific data, or syncing to the cloud, why not simply back up your entire Windows installation?

You can add personal folders to an image backup, but omit apps and games. Alternatively, you could opt to create an image of your entire system drive. Naturally, you would need a suitable volume of storage for such a backup.

Thanks to the ISO image format, it is possible to back up your entire PC. This essentially creates an exact copy of your entire drive or selected directories. You’ll be able to restore the image backup should disaster strike.

[mai mult...]

Using PowerShell to Remove Bloatware from Windows 10

PowerShell is an important part of Windows system management. While some compare PowerShell to the Command Prompt, at their core they are different beasts. However, PowerShell is a command and scripting language that gives you greater control over your Windows installation. In this instance, you can use a series of PowerShell commands to either hide or remove Windows 10 bloatware.

First, open the PowerShell command line. Type PowerShell into your Start menu search bar. The best match should be Windows PowerShell. Right-click and select Run as Administrator. This ensures you have control over the entire system.

Hide Apps Using the “Remove-AppxPackage” Command

Entering the following code into the PowerShell will hide each application you enter.

Get-AppxPackage -name "Microsoft.ZuneMusic" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.Music.Preview" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.XboxGameCallableUI" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.XboxIdentityProvider" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.BingTravel" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.BingHealthAndFitness" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.BingFoodAndDrink" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.People" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.BingFinance" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.3DBuilder" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.WindowsCalculator" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.BingNews" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.XboxApp" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.BingSports" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.WindowsCamera" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.Getstarted" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.Office.OneNote" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.WindowsMaps" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.MicrosoftSolitaireCollection" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.MicrosoftOfficeHub" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.BingWeather" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.BioEnrollment" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.WindowsStore" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.Windows.Photos" | Remove-AppxPackage
Get-AppxPackage -name "Microsoft.WindowsPhone" | Remove-AppxPackage

Hiding a pre-installed app has the advantage of obscuring it from your view without actually deleting it from your system. If at a later date you realize that you do require the app, you can relocate it.

[mai mult...]

How to Remote Control Linux From Windows

Set up a Linux server? Perhaps it’s running a videogame, or you’ve configured it as the solution to network storage. Or maybe you have a Linux media center, retro gaming machine, or a simple secondary PC.

Whatever the case, at some stage there is going to be a time when you need to access the Linux PC or server (we’ll refer to it as a “box” from this point) from the comfort of your Windows PC or laptop. So, what is the solution?

Windows users have a number of tools available that can be used to enable them to remote control a Linux device.

[mai mult...]