Use Tor to Surf the Web Anonymously

Samual Sam
Updated on 22-Jan-2020 08:04:56

173 Views

Everyone has secrets, and not all of them are sinister ones. Some secrets are personal, that we share with friends and they swear to protect it all their lives. Then there are really private secrets that we would rather not share and take measures to protect.But every time we think of more security, we look toward the internet to get help in preserving our privacy. There are many companies that provide online data-storage services and promise that our information will remain secure with them.What is Deep Web?Internet is very vast, it’s not restricted just to Google, Facebook, YouTube or other ... Read More

Get Services Based on Multiple Conditional Parameters in PowerShell

Chirag Nagrekar
Updated on 22-Jan-2020 08:03:35

628 Views

To filter out services with both start-type “Automatic” and Status “stopped” we need to use the -AND comparison operator. Here, services will be displayed only when both conditions are matching.CommandGet-Service | where{($_.StartType -eq "Automatic") -and ($_.Status -eq "Stopped")} | Select Name, StartType, StatusOutputName       StartType  Status ----       ---------  ------ gpsvc      Automatic Stopped gupdate    Automatic Stopped MapsBroker Automatic StoppedCommandTo get services with start-type manual or disabled we will use -OR operator.Get-Service | where{($_.StartType -eq "Manual") -or ($_.StartType -eq "Disabled")} | Sort-Object Starttype | Select Name, StartType, StatusOutputLxpSvc                 ... Read More

Install Winamp on Ubuntu Linux Mint

Sharon Christine
Updated on 22-Jan-2020 08:02:38

7K+ Views

Are you looking for an alternative Linux music player? Winamp might be a good option to consider.Winamp supports a wide variety of contemporary and specialized music file formats, including MIDI, MOD, MPEG-1 audio layers 1 and 2, AAC, M4A, FLAC, WAV, OGG Vorbis, and Windows Media Audio. It supports gapless playback for MP3 and AAC, and Replay Gain for volume leveling across tracks. This article describes” How to install Winamp on Ubuntu/Linux Mint”Installing WinampTo install Winamp, get access of Winamp PPA from repository, use the following command –$ sudo add-apt-repository ppa:forkotov02/ppaThe sample output should be like this –Releases of Qt-based ... Read More

Get All Services Based on Their Status in PowerShell

Chirag Nagrekar
Updated on 22-Jan-2020 08:02:35

1K+ Views

Below commands will filter out services based on their Status (Running, Stopped).CommandTo get all the running services on the local computer.Get-Service | where{$_.Status -eq "Running"}OutputRunning  TimeBrokerSvc      Time Broker Running  TokenBroker        Web Account Manager Running  TrkWks             Distributed Link Tracking Client Running  UnistoreSvc_158379 User Data Storage_158379 Running  UserDataSvc_158379 User Data Access_158379 Running  UserManager        User Manager Running  UsoSvc             Update Orchestrator Service Running  VaultSvc           Credential Manager Running  VMUSBArbService    VMware USB Arbitration Service Running  WavesSysSvc        Waves ... Read More

Use TRAI's MySpeed App to Check Internet Speed

Samual Sam
Updated on 22-Jan-2020 08:02:10

240 Views

“Hello? I can’t hear you. Who is this? Oh, God… this network”.This is something we use and we here almost every day. There is not much we can do about this issue, except for complaining, but now to measure the speed of internet on our device, India’s Telecom Regulatory Authority has launched a new app called , “MySpeed” .This app is very similar to all other applications designed to test the speed of internet connections. However, this is a great move by the Indian government. It can be easily downloaded by the mobile Sewa app store. It helps users to ... Read More

Get Services Based on Start Type in PowerShell

Chirag Nagrekar
Updated on 22-Jan-2020 07:57:33

3K+ Views

Below commands are useful to filter services based on their start types (Automatic, Manual or Disabled).CommandTo get the Automatic start-type service. These services are started automatically when the system starts.Get-Service | where{$_.StartType -eq "Automatic"} | Select Name, StarttypeOutputSystemEventsBroker          Automatic TeraCopyService             Automatic Themes                      Automatic TrkWks                      Automatic UserManager                 Automatic UsoSvc                      Automatic VMUSBArbService     ... Read More

Wage War Against Viruses

Samual Sam
Updated on 22-Jan-2020 07:56:49

173 Views

There’s no way around it – World Wide Web is a problem with all imaginable forms or viruses and malware and they aren’t going anywhere. The best we can do is to improve our means of protecting our devices, and thankfully, we’ve got technology on our side as well. Fighting against viruses is an ongoing thing since internet came to be in this world – the good, the bad and the ugly came together and you can’t have one without the other.The first thing to do is ask yourself how much are you really investing into your internet security, and ... Read More

Search for Specific Service in PowerShell

Chirag Nagrekar
Updated on 22-Jan-2020 07:54:59

2K+ Views

You can get the specific service-related information using –name parameter and you just need to provide the service name.CommandGet-Service –Name "Spooler"OutputStatus Name DisplayName ------ ---- ----------- Running Spooler Print SpoolerCommandSimilarly, you can search for more than one service with the –name parameter.Get-Service –Name "Spooler", "RemoteAccess" OutputStatus Name DisplayName ------ ---- ----------- Stopped remoteaccess Routing and Remote Access Running Spooler Print SpoolerYou can also use the wildcard character (*) in service name so the console can fetch the entire name.When wildcard character (*) is used at the end of the name then debug console will check the starting string of the ... Read More

IBM Watson: The Supercomputer for Your Business

Samual Sam
Updated on 22-Jan-2020 07:53:51

213 Views

Do you wish to initiate a new business, need help with business decisions, analyze immense amount of data, create a chatbot or song, need help with recipes, or have a business that is leaving money on the table? Get all your answers from ‘Watson.’Created by IBM, Watson is a supercomputer that works as a ‘question answering’ machine while combining artificial intelligence (AI) along with predictive analytical software. Named after IBM’s founder Thomas J. Watson, it is a cognitive technology that can understand, reason and think like a human.With Watson, through questions designed in natural language, one can analyze, visualize, and ... Read More

Display Specific Properties from Get-Service Output in PowerShell

Chirag Nagrekar
Updated on 22-Jan-2020 07:51:51

3K+ Views

To display the other properties of the services than the default ones (which are supported by Get-Member), you need to pipeline the Select-Object (alias Select) command. For example, in the below command we will display theService name, start type and status of the service.CommandGet-Service | Select-Object Name, StartType, StatusOutputName                                                   StartType  Status ----                                               ... Read More

Advertisements