{"id":41863,"date":"2025-07-01T23:23:27","date_gmt":"2025-07-02T02:23:27","guid":{"rendered":"https:\/\/mastertrend.info\/?p=41863"},"modified":"2025-11-11T23:37:19","modified_gmt":"2025-11-12T02:37:19","slug":"powershell-scans-windows","status":"publish","type":"post","link":"https:\/\/mastertrend.info\/en\/powershell-escanea-windows\/","title":{"rendered":"PowerShell scans Windows: Detects viruses without Windows Security! \ud83e\udda0\u26a1"},"content":{"rendered":"<h2>PowerShell Scans Windows: Scan and Remove Malware Easily \ud83d\udd25\ud83d\udee1\ufe0f<\/h2>\n<p>If you&#039;re using an unactivated version of Windows, you may experience issues using Windows Security. Even if you can access the security app, you won&#039;t be able to update its virus database. \u26a0\ufe0f<\/p>\n<p>So, if you are unable to access the Windows Security application for some reason, you can rely on the utility of <a href=\"https:\/\/learn.microsoft.com\/es-es\/powershell\/scripting\/install\/installing-powershell-on-windows?view=powershell-7.5\" target=\"_blank\" rel=\"noopener\" data-schema-attribute=\"mentions\">PowerShell<\/a> to scan your Windows for viruses and malware. \ud83e\udda0<\/p>\n<h2><span id=\"How_to_Launch_PowerShell_in_Windows\"><strong>How to open PowerShell in Windows?<\/strong><\/span><\/h2>\n<p>Opening PowerShell in Windows is very simple. Here&#039;s how to launch it with administrator rights.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter wp-image-127793 size-full\" src=\"https:\/\/mastertrend.info\/wp-content\/uploads\/2025\/04\/Como-usar-PowerShell-para-escanear-Windows-en-busca-de-virus.jpg\" alt=\"Powershell\" width=\"500\" height=\"413\" data-lazy-=\"\" title=\"\"><\/p>\n<ul>\n<li>Search <strong>PowerShell<\/strong> in Windows Search.<\/li>\n<li>Right click on PowerShell and select <strong>Run as administrator.<\/strong><\/li>\n<\/ul>\n<h2><span id=\"1_Check_Windows_Security_Status\"><strong>1. Check the status of Windows Security<\/strong><\/span><\/h2>\n<p>Before moving on to the next methods, you need to make sure the security app is running on your device. This method won&#039;t work if you&#039;re using another security program. \ud83d\udd0d<\/p>\n<p>In the PowerShell window, you need to run the following command.<\/p>\n<pre><code><strong>Get-MpComputerStatus<\/strong><\/code><\/pre>\n<p><img decoding=\"async\" class=\"aligncenter wp-image-127792 size-full\" src=\"https:\/\/mastertrend.info\/wp-content\/uploads\/2025\/04\/1743522412_302_Como-usar-PowerShell-para-escanear-Windows-en-busca-de-virus.jpg\" alt=\"Check Defender Status\" width=\"700\" height=\"378\" data-lazy-=\"\" title=\"\"><\/p>\n<p>The above command will list all the details of Windows Security. If the security tool is active on your system, it will display <strong>True <\/strong>in the field <strong>AntivirusEnable<\/strong>. \u2705<\/p>\n<h2><span id=\"2_Update_Windows_Security\"><strong>2. Update Windows Security<\/strong><\/span><\/h2>\n<p>If you install all Windows updates on time, you won&#039;t need to follow this method. However, if you don&#039;t update, you&#039;ll need to update the Windows Security app manually. \ud83d\udd04<\/p>\n<pre><code><strong>Update-MpSignature<\/strong><\/code><\/pre>\n<p><img decoding=\"async\" class=\"aligncenter wp-image-127791 size-full\" src=\"https:\/\/mastertrend.info\/wp-content\/uploads\/2025\/04\/1743522412_913_Como-usar-PowerShell-para-escanear-Windows-en-busca-de-virus.jpg\" alt=\"Update Microsoft Defender\" width=\"700\" height=\"391\" data-lazy-=\"\" title=\"\"><\/p>\n<h2><span id=\"3_Running_a_Full_Virus_Scan\"><strong>3. Perform a full virus scan<\/strong><\/span><\/h2>\n<p>Si no has escaneado tu computadora en un tiempo, es recomendable realizar un escaneo completo del <a class=\"wpil_keyword_link\" href=\"https:\/\/mastertrend.info\/en\/antivirus-in-games\/\" target=\"_blank\" rel=\"noopener\" title=\"Antivirus in games: Turn it off or not? Real-life impact on FPS. See! \ud83d\udee1\ufe0f\ud83d\udd25\" data-wpil-keyword-link=\"linked\" data-wpil-monitor-id=\"34487\">antivirus<\/a>. Puedes usar PowerShell para ejecutar un escaneo completo de antivirus en tu PC. El escaneo completo revisa cada archivo en tu Windows, por lo que puede demorar un tiempo. \ud83d\udd52 Para realizar un escaneo completo de antivirus, ejecuta el siguiente comando:<\/p>\n<pre><strong><code>Start-MpScan -ScanType FullScan<\/code><\/strong><\/pre>\n<p><img decoding=\"async\" class=\"aligncenter wp-image-127790 size-full\" src=\"https:\/\/mastertrend.info\/wp-content\/uploads\/2025\/04\/1743522412_197_Como-usar-PowerShell-para-escanear-Windows-en-busca-de-virus.jpg\" alt=\"Running a Full Virus Scan\" width=\"700\" height=\"389\" data-lazy-=\"\" title=\"\"><\/p>\n<p>Since the full scan may take some time to complete, you can instruct Windows Security to perform the scan in the background. To do this, run the following command.<\/p>\n<pre><code><strong>Start-MpScan -ScanType FullScan -AsJob<\/strong><\/code><\/pre>\n<p><img decoding=\"async\" class=\"aligncenter wp-image-127789 size-full\" src=\"https:\/\/mastertrend.info\/wp-content\/uploads\/2025\/04\/1743522412_283_Como-usar-PowerShell-para-escanear-Windows-en-busca-de-virus.jpg\" alt=\"Microsoft defender to perform the scan\" width=\"700\" height=\"390\" data-lazy-=\"\" title=\"\"><\/p>\n<h2><span id=\"4_Run_a_Quick_Scan_using_PowerShell\"><strong>4. Run a quick scan using PowerShell<\/strong><\/span><\/h2>\n<p>The full scan takes time and may slow down your device. In that case, you can use the <a title=\"Windows Security not working on Windows 11? Quick fix \ud83d\udd27\ud83d\udcbb\" href=\"https:\/\/mastertrend.info\/en\/windows-security-doesnt-work\/\" target=\"_blank\" rel=\"noopener\" data-wpil-monitor-id=\"6049\">Windows Security Quick Scan feature<\/a>To run a quick antivirus scan using PowerShell, run the following command and press Enter.<\/p>\n<pre><code><strong>Start-MpScan -ScanType QuickScan<\/strong><\/code><\/pre>\n<p><img decoding=\"async\" class=\"aligncenter wp-image-127788 size-full\" src=\"https:\/\/mastertrend.info\/wp-content\/uploads\/2025\/04\/1743522412_228_Como-usar-PowerShell-para-escanear-Windows-en-busca-de-virus.jpg\" alt=\"Run a Quick Scan using PowerShell\" width=\"700\" height=\"391\" data-lazy-=\"\" title=\"\"><\/p>\n<h2><span id=\"5_Run_Windows_Security_Offline_Scan\"><strong>5. Run a Windows Security offline scan<\/strong><\/span><\/h2>\n<p>For those who don&#039;t know, the offline scan feature removes malware that&#039;s difficult to detect. However, the offline scan is run from a trusted environment. That means you could lose your current work. \ud83d\ude1f<\/p>\n<p>Before running the offline scan, make sure to save all open files. To perform an offline scan via PowerShell, run the following command:<\/p>\n<pre><code><strong>Start-MpWDOScan<\/strong><\/code><\/pre>\n<p><img decoding=\"async\" class=\"aligncenter wp-image-127787 size-full\" src=\"https:\/\/mastertrend.info\/wp-content\/uploads\/2025\/04\/1743522413_641_Como-usar-PowerShell-para-escanear-Windows-en-busca-de-virus.jpg\" alt=\"Run Defender Offline Scan\" width=\"700\" height=\"392\" data-lazy-=\"\" title=\"\"><\/p>\n<p>This guide explains how to use <a title=\"Repair corrupted files in Windows \ud83d\udcc2 Effective solution\" href=\"https:\/\/mastertrend.info\/en\/repair-corrupt-files-in-windows\/\" target=\"_blank\" rel=\"noopener\" data-wpil-monitor-id=\"5944\">PowerShell to scan Windows<\/a> by malware. I hope this article is helpful. Share it with your friends! If you have any questions, let us know in the comments below. \ud83d\udcac<\/p>\n<p><!-- CONTENT END 1 --><\/p>","protected":false},"excerpt":{"rendered":"<p>PowerShell scans Windows for viruses and malware\u2014ideal if your Windows isn&#039;t activated. Protect your PC quickly and easily! \ud83e\udda0<\/p>","protected":false},"author":1,"featured_media":54078,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"ai_generated_summary":"","iawp_total_views":55,"jnews-multi-image_gallery":[],"jnews_single_post":{"format":"standard","override":[{"template":"1","parallax":"1","fullscreen":"1","layout":"right-sidebar","sidebar":"default-sidebar","second_sidebar":"default-sidebar","sticky_sidebar":"1","share_position":"top","share_float_style":"share-monocrhome","show_share_counter":"1","show_view_counter":"1","show_featured":"1","show_post_meta":"1","show_post_author":"1","show_post_author_image":"1","show_post_date":"1","post_date_format":"default","post_date_format_custom":"Y\/m\/d","show_post_category":"1","show_post_reading_time":"1","post_reading_time_wpm":"300","post_calculate_word_method":"str_word_count","show_zoom_button":"1","zoom_button_out_step":"2","zoom_button_in_step":"3","show_post_tag":"1","show_prev_next_post":"1","show_popup_post":"1","number_popup_post":"1","show_author_box":"1","show_post_related":"0","show_inline_post_related":"0","show_comment_section":"1"}],"image_override":[{"single_post_thumbnail_size":"crop-500","single_post_gallery_size":"crop-500"}],"trending_post_position":"meta","trending_post_label":"Trending","sponsored_post_label":"Sponsored by","disable_ad":"0","subtitle":""},"jnews_primary_category":[],"jnews_social_meta":[],"jnews_review":[],"enable_review":"","type":"percentage","name":"","summary":"","brand":"","sku":"","good":[],"bad":[],"score_override":"","override_value":"","rating":[],"price":[],"jnews_override_counter":{"view_counter_number":"0","share_counter_number":"0","like_counter_number":"0","dislike_counter_number":"0"},"footnotes":""},"categories":[308],"tags":[1445,1425,1623],"class_list":["post-41863","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-seguridad","tag-evergreencontent","tag-malware","tag-windows10"],"_links":{"self":[{"href":"https:\/\/mastertrend.info\/en\/wp-json\/wp\/v2\/posts\/41863","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/mastertrend.info\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mastertrend.info\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mastertrend.info\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/mastertrend.info\/en\/wp-json\/wp\/v2\/comments?post=41863"}],"version-history":[{"count":15,"href":"https:\/\/mastertrend.info\/en\/wp-json\/wp\/v2\/posts\/41863\/revisions"}],"predecessor-version":[{"id":105520,"href":"https:\/\/mastertrend.info\/en\/wp-json\/wp\/v2\/posts\/41863\/revisions\/105520"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/mastertrend.info\/en\/wp-json\/wp\/v2\/media\/54078"}],"wp:attachment":[{"href":"https:\/\/mastertrend.info\/en\/wp-json\/wp\/v2\/media?parent=41863"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mastertrend.info\/en\/wp-json\/wp\/v2\/categories?post=41863"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mastertrend.info\/en\/wp-json\/wp\/v2\/tags?post=41863"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}