<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>Windows</title><link>https://evotec.xyz/es/categories/windows</link><description>Evotec</description><atom:link href="https://evotec.xyz/es/categories/windows/index.xml" rel="self" type="application/rss+xml" /><item><title>Strengthening Password Security in Active Directory: A PowerShell-Powered Approach</title><link>https://evotec.xyz/es/blog/strengthening-password-security-in-active-directory-a-powershell-powered-approach</link><description>PasswordSolution uses the DSInternals PowerShell module to gather Active Directory hashes and then combines that data into a prettified report. If you have ever used DSInternals, you know that while very powerful, it comes with raw data that is hard to process and requires some skills to get it into a state that can be shown to management or security.</description><pubDate>Sun, 28 May 2023 14:40:25 GMT</pubDate><guid>https://evotec.xyz/es/blog/strengthening-password-security-in-active-directory-a-powershell-powered-approach</guid><category>active directory</category><category>ad</category><category>dsinternals</category><category>html</category><category>password quality</category><category>passwordsolution</category><category>powershell</category><category>scan</category><category>security</category><category>Windows</category></item><item><title>Reporting group membership for critical Active Directory groups</title><link>https://evotec.xyz/es/blog/reporting-group-membership-for-critical-active-directory-groups</link><description>I work a lot with Active Directory-related tasks. One of the tasks is to know the group membership of critical Active Directory Groups such as Domain Admins, Enterprise Admins, Schema Admins, Event Log Readers, and a few others that are a bit less known. As I did it, I got bored of typing the group names repeatedly and decided that enough was enough and there must be an easier way for me to do that.</description><pubDate>Sun, 07 Aug 2022 11:57:28 GMT</pubDate><guid>https://evotec.xyz/es/blog/reporting-group-membership-for-critical-active-directory-groups</guid><category>active directory</category><category>ad</category><category>group membership</category><category>groups</category><category>nested groups</category><category>powershell</category><category>Windows</category></item><item><title>OfficeIMO – Free cross-platform Microsoft Word .NET library</title><link>https://evotec.xyz/es/blog/officeimo-free-cross-platform-microsoft-word-net-library</link><description>OfficeIMO is a free cross-platform .NET library for creating Word documents with Open XML SDK while hiding much of the low-level plumbing.</description><pubDate>Sun, 12 Jun 2022 16:14:01 GMT</pubDate><guid>https://evotec.xyz/es/blog/officeimo-free-cross-platform-microsoft-word-net-library</guid><category>c#</category><category>csharp</category><category>docx</category><category>microsoft office</category><category>Office 365</category><category>officeimo</category><category>Windows</category><category>word</category></item><item><title>Reading IIS logs with PowerShell</title><link>https://evotec.xyz/es/blog/reading-iis-logs-with-powershell</link><description>Today I was reading Twitter, as I am pretty addicted to technology news when Adam Bacon mentioned that he’s surprised that no one has rebuilt IIS Parser as pure PowerShell. While this is not entirely true, and some modules can do some parsing, I decided to try my luck. While doing it from scratch in PowerShell is possible, I opted to use an external C# library that does all the heavy lifting and is optimized for speed.</description><pubDate>Sat, 04 Jun 2022 19:47:08 GMT</pubDate><guid>https://evotec.xyz/es/blog/reading-iis-logs-with-powershell</guid><category>iis</category><category>iis-server</category><category>logs</category><category>powershell</category><category>Windows</category></item><item><title>Difference between GetTempFileName() and GetRandomFileName() that got my ass kicked</title><link>https://evotec.xyz/es/blog/difference-between-gettempfilename-and-getrandomfilename-that-got-my-ass-kicked</link><description>Today’s story is about me making assumptions on how things work based on the method’s name. As the blog post says, I want to focus on two similar methods – GetTempFileName() and GetRandomFileName(), when using PowerShell. Still, since those methods are .NET based, it applies to a whole range of other languages – C#, F#, VisualBasic, and all others that I’ve never used.</description><pubDate>Mon, 24 Jan 2022 18:51:13 GMT</pubDate><guid>https://evotec.xyz/es/blog/difference-between-gettempfilename-and-getrandomfilename-that-got-my-ass-kicked</guid><category>.net</category><category>c#</category><category>powershell</category><category>Windows</category></item><item><title>Active Directory Domain Services could not replicate the directory partition – The replication operation encountered a database error</title><link>https://evotec.xyz/es/blog/active-directory-domain-services-could-not-replicate-the-directory-partition-the-replication-operation-encountered-a-database-error</link><description>If you ever encounter an error while trying to create a new domain within a forest saying, “The replication operation encountered a database error,” it makes you sweat a bit. Your brain tells you it will be a nightmare to fix, do I have proper backups to make it happen, and the question “why now” shows up.</description><pubDate>Sun, 28 Nov 2021 14:38:20 GMT</pubDate><guid>https://evotec.xyz/es/blog/active-directory-domain-services-could-not-replicate-the-directory-partition-the-replication-operation-encountered-a-database-error</guid><category>active directory</category><category>dcdiag</category><category>dfs</category><category>domain</category><category>forest</category><category>forest replication</category><category>PowerShell</category><category>testimo</category><category>Windows</category></item><item><title>Encrypting and decrypting PGP using PowerShell</title><link>https://evotec.xyz/es/blog/encrypting-and-decrypting-pgp-using-powershell</link><description>Some time ago, I decided that having an easy-to-use PGP PowerShell module is a way to kill my boredom. Four months have passed, and I decided to share it with the world, as it may be helpful to some of you. Today I would like to introduce you to PSPGP – PowerShell module that provides PGP functionality in PowerShell.</description><pubDate>Sun, 12 Sep 2021 15:14:12 GMT</pubDate><guid>https://evotec.xyz/es/blog/encrypting-and-decrypting-pgp-using-powershell</guid><category>gpg</category><category>pgp</category><category>powershell</category><category>windows</category></item><item><title>Easy way to connect to FTPS and SFTP using PowerShell</title><link>https://evotec.xyz/es/blog/easy-way-to-connect-to-ftps-and-sftp-using-powershell</link><description>FTPS and SFTP are two ways to send and receive files from remote sources. While the name suggests both do the same thing, those are different protocols, in the end, having the same goal. A few weeks back, I had to make sure I can reliably download files from FTPS server using PowerShell, and since I couldn’t find anything straightforward to use, I decided to write my own. Transfertto is a new PowerShell module that supports both FTPS and SFTP protocols. Its goal is to be the only module that you need to transfer files to and from FTP/SFTP servers.</description><pubDate>Sun, 29 Aug 2021 13:47:48 GMT</pubDate><guid>https://evotec.xyz/es/blog/easy-way-to-connect-to-ftps-and-sftp-using-powershell</guid><category>ftp</category><category>ftps</category><category>powershell</category><category>sftp</category><category>ssh</category><category>transferetto</category><category>Windows</category></item><item><title>Remove-Item : Access to the cloud file is denied while deleting files from OneDrive</title><link>https://evotec.xyz/es/blog/remove-item-access-to-the-cloud-file-is-denied-while-deleting-files-from-onedrive</link><description>I like OneDrive. It allows me to keep my data secure and always synchronized. If things go wrong, I can always get it back. I use it for almost everything. Even for my PowerShell projects, which are committed to GitHub, so in theory, I shouldn’t need that. But every once in a while, I make some stupid mistake and delete a file that has yet not been committed to GitHub, and that’s where the OneDrive comes in handy. Quick restore, and we’re back. Unfortunately, sometimes things aren’t as I would expect them to work. For example, let’s have a look at this nice list of markdown files that are documentation for my module called GPOZaurr.</description><pubDate>Sun, 06 Dec 2020 18:07:39 GMT</pubDate><guid>https://evotec.xyz/es/blog/remove-item-access-to-the-cloud-file-is-denied-while-deleting-files-from-onedrive</guid><category>delete</category><category>Office 365</category><category>onedrive</category><category>powershell</category><category>remove-item</category><category>Windows</category></item><item><title>Restoring (Recovering) PowerShell Scripts from Event Logs</title><link>https://evotec.xyz/es/blog/restoring-recovering-powershell-scripts-from-event-logs</link><description>A few days ago, I was asked to take a look at PowerShell Malware. While I don’t know much about malware, my curiosity didn’t let me skip on this occasion, and I was handed over WindowsPowerShell.evtx file. Ok, that’s not what I expected! I wanted PowerShell .ps1 files that I can read and assess? Well, you play with the cards you were dealt with. What I was handed over was PowerShell Event Log. PowerShell writes whatever you execute, and it thinks it is risky, to Windows PowerShell Operation Event Log.</description><pubDate>Fri, 28 Aug 2020 15:39:28 GMT</pubDate><guid>https://evotec.xyz/es/blog/restoring-recovering-powershell-scripts-from-event-logs</guid><category>event log</category><category>get-events</category><category>powershell</category><category>powershellmanager</category><category>pseventviewer</category><category>Windows</category></item><item><title>The security account manager (SAM) has determined that SID is already in use in the Forest</title><link>https://evotec.xyz/es/blog/the-security-account-manager-sam-has-determined-that-sid-is-already-in-use-in-the-forest</link><description>The security account manager (SAM) has determined that the security identifier (SID) for this computer is already in use in the Forest you want to join. This can happen when restoring an Active Directory Domain Controller with an improper backup. Reinstall the operating system on the local AD DC to obtain a new SID.</description><pubDate>Thu, 12 Mar 2020 19:02:42 GMT</pubDate><guid>https://evotec.xyz/es/blog/the-security-account-manager-sam-has-determined-that-sid-is-already-in-use-in-the-forest</guid><category>active directory</category><category>powershell</category><category>sid</category><category>Windows</category></item><item><title>Create a local user or administrator account in Windows using PowerShell</title><link>https://evotec.xyz/es/blog/create-a-local-user-or-administrator-account-in-windows-using-powershell</link><description>Create a local Windows user or administrator with PowerShell, handle localized Administrators groups, and prepare the account for LAPS-managed passwords.</description><pubDate>Wed, 30 Oct 2019 13:44:27 GMT</pubDate><guid>https://evotec.xyz/es/blog/create-a-local-user-or-administrator-account-in-windows-using-powershell</guid><category>administrator</category><category>gpo</category><category>powershell</category><category>Windows</category></item><item><title>What do we say to health checking Active Directory?</title><link>https://evotec.xyz/es/blog/what-do-we-say-to-health-checking-active-directory</link><description>Health check Active Directory with PowerShell, dcdiag, repadmin, and security-focused reviews so replication, DNS, DHCP, and GPO issues surface early.</description><pubDate>Sun, 08 Sep 2019 15:48:39 GMT</pubDate><guid>https://evotec.xyz/es/blog/what-do-we-say-to-health-checking-active-directory</guid><category>active directory</category><category>ad</category><category>dhcp</category><category>dns</category><category>health checks</category><category>powershell</category><category>security checks</category><category>testimo</category><category>Windows</category></item><item><title>What do we say to writing Active Directory documentation?</title><link>https://evotec.xyz/es/blog/what-do-we-say-to-writing-active-directory-documentation</link><description>Document Active Directory with PowerShell using PSWinDocumentation, Dashimo, Documentimo, and Excelimo to keep environment knowledge current.</description><pubDate>Sun, 12 May 2019 12:46:24 GMT</pubDate><guid>https://evotec.xyz/es/blog/what-do-we-say-to-writing-active-directory-documentation</guid><category>Active Directory</category><category>dashimo</category><category>documentation</category><category>documentimo</category><category>excel</category><category>excelimo</category><category>powershell</category><category>pswindocumentation</category><category>Windows</category><category>word</category></item><item><title>The only PowerShell Command you will ever need to find out who did what in Active Directory</title><link>https://evotec.xyz/es/blog/the-only-powershell-command-you-will-ever-need-to-find-out-who-did-what-in-active-directory</link><description>While the title of this blog may be a bit exaggeration, the command I’m trying to show here does it’s best to deliver on the promise. What you’re about to witness here is something I’ve worked on for a while now, and it meets my basic needs. If you don’t have SIEM product or products that monitor who does what in Active Directory this command makes it very easy, even for people who don’t have much experience in reading Event Logs. If you’d like to learn about working with Windows Event Logs here’s a great article I wrote recently – PowerShell – Everything you wanted to know about Event Logs and then some.</description><pubDate>Sun, 28 Apr 2019 15:52:32 GMT</pubDate><guid>https://evotec.xyz/es/blog/the-only-powershell-command-you-will-ever-need-to-find-out-who-did-what-in-active-directory</guid><category>active directory</category><category>ad</category><category>events</category><category>events viewer</category><category>powershell</category><category>pswinreporting</category><category>pswinreportingv2</category><category>Windows</category></item><item><title>Meet Emailimo – New way to send pretty emails with PowerShell</title><link>https://evotec.xyz/es/blog/meet-emailimo-new-way-to-send-pretty-emails-with-powershell</link><description>Meet Emailimo, a PowerShell module for building readable HTML emails with tables, links, colors, and cleaner templating than hand-written markup.</description><pubDate>Fri, 12 Apr 2019 08:13:43 GMT</pubDate><guid>https://evotec.xyz/es/blog/meet-emailimo-new-way-to-send-pretty-emails-with-powershell</guid><category>css</category><category>emailimo</category><category>html</category><category>javascript</category><category>js</category><category>Linux</category><category>Mac OS X</category><category>mailing</category><category>outlook</category><category>PowerShell</category><category>pswritehtml</category><category>send-email</category><category>send-mail</category><category>Windows</category></item><item><title>Out-HtmlView – HTML alternative to Out-GridView</title><link>https://evotec.xyz/es/blog/out-htmlview-html-alternative-to-out-gridview</link><description>One of the most comfortable output’s in PowerShell to work and analyze data is Out-GridView. It’s handy as you can search, sort and have things done quicker than trying to do things in the console. However it’s currently not available in PowerShell Core (PowerShell 6+), and when it is available in PowerShell 7, it will NOT be cross-platform. Since I had released Dashimo a few days ago, I thought it was trivial to make a simple command out of it that could solve this problem.</description><pubDate>Sat, 06 Apr 2019 18:47:55 GMT</pubDate><guid>https://evotec.xyz/es/blog/out-htmlview-html-alternative-to-out-gridview</guid><category>cross-platform</category><category>Mac OS X</category><category>powershell</category><category>powershell 6</category><category>powershell 7</category><category>powershell core</category><category>Ubuntu</category><category>Windows</category></item><item><title>PSWinReporting 1.8 – Split of branches (Legacy vs. New Hope)</title><link>https://evotec.xyz/es/blog/pswinreporting-1-8-split-of-branches-legacy-vs-new-hope</link><description>A new branch of PSWinReporting is slowly coming, and I thought it would be the best time to have a final article about it with all configuration options available for those that will want to stay using PSWinReporting from Legacy branch. The idea is that you may have it working in your systems and it’s good enough for you. You may not want to change it, and with New Hope, the changes are so big it’s a rewrite.</description><pubDate>Sun, 10 Mar 2019 20:39:43 GMT</pubDate><guid>https://evotec.xyz/es/blog/pswinreporting-1-8-split-of-branches-legacy-vs-new-hope</guid><category>Active Directory</category><category>event</category><category>event monitoring</category><category>events</category><category>powershell</category><category>pswinreporting</category><category>Windows</category></item><item><title>PowerShell – Everything you wanted to know about Event Logs and then some</title><link>https://evotec.xyz/es/blog/powershell-everything-you-wanted-to-know-about-event-logs</link><description>If you feel this title is very familiar to you it’s because I actually have stolen the title from Kevin Marquette. I’m in awe of his posts that take you thru topic from beginning till the end. No splitting, no hiding anything, everything on a plate, in a single post. That’s why I’ve decided to write a post that will take you on a trip on how to work with Event Logs, something that is an internal part of Windows Administration. If you’ve never worked with Events and you’re in IT you most likely should make an effort to find out what it is and how you can eat it.</description><pubDate>Wed, 20 Feb 2019 13:22:19 GMT</pubDate><guid>https://evotec.xyz/es/blog/powershell-everything-you-wanted-to-know-about-event-logs</guid><category>Active Directory</category><category>event logs</category><category>events</category><category>get-eventlog</category><category>get-winevent</category><category>microsoft window</category><category>PowerShell</category><category>windows</category><category>windows server</category></item><item><title>How to find different server types in Active Directory with PowerShell</title><link>https://evotec.xyz/es/blog/how-to-find-different-server-types-in-active-directory-with-powershell</link><description>Working as a freelancer is a great thing if you can handle it. Each day, each week something new happens and a new problem shows up on my doorstep. It also means it’s almost never boring at your job and you get to play with new stuff. But there’s one drawback to this. You’re often thrown at the problem, told to fix it but often that’s about as much information as you get. It wasn’t very different today. I was told to switch Office 365 from ADFS to Password Synchronization. While reasons for this are not really important, the important question here is what is the name of AD Connect server that’s responsible for this configuration?</description><pubDate>Wed, 06 Feb 2019 18:25:30 GMT</pubDate><guid>https://evotec.xyz/es/blog/how-to-find-different-server-types-in-active-directory-with-powershell</guid><category>active directory</category><category>ad</category><category>adconnect</category><category>azure ad</category><category>exchange</category><category>Hyper-V</category><category>powershell</category><category>sql</category><category>windows</category></item><item><title>Active Directory – How to track down why and where the user account was locked out</title><link>https://evotec.xyz/es/blog/active-directory-how-to-track-down-why-and-where-the-user-account-was-locked-out</link><description>I’ve been working with Windows Events for a while now. One of the things I did to help me diagnose problems and reporting on Windows Events was to write PSEventViewer to help to parse the logs and write PSWinReporting to help monitor (with use of PSEventViewer) Domain Controllers for events that happen across the domain. It’s handy and I, get those excellent daily reports of what happened while I was gone.</description><pubDate>Thu, 24 Jan 2019 15:25:31 GMT</pubDate><guid>https://evotec.xyz/es/blog/active-directory-how-to-track-down-why-and-where-the-user-account-was-locked-out</guid><category>active directory</category><category>event viewer</category><category>get-events</category><category>get-winevent</category><category>powershell</category><category>pseventviewer</category><category>pswinreporting</category><category>windows</category><category>windows server</category></item><item><title>How to change your own expired password when you can’t login to RDP</title><link>https://evotec.xyz/es/blog/how-to-change-your-own-expired-password-when-you-cant-login-to-rdp</link><description>I must admit that it was a bit embarrassing to see my Administrator password expired when I tried to log in as Domain Admin to Domain Controller. I got this little message saying This user account’s password has expired. The password must change to logon. Please update the password or contact your system administrator or technical support.</description><pubDate>Wed, 23 Jan 2019 10:41:40 GMT</pubDate><guid>https://evotec.xyz/es/blog/how-to-change-your-own-expired-password-when-you-cant-login-to-rdp</guid><category>expired password</category><category>powershell</category><category>rdc</category><category>rdp</category><category>remote desktop connection</category><category>remote desktop protocol</category><category>windows</category></item><item><title>Windows Server 2019 – Desktop path for all users redirected to System32 \ SystemProfile \ Desktop</title><link>https://evotec.xyz/es/blog/windows-server-2019-desktop-path-for-all-users-cwindowssystem32configsystemprofiledesktop</link><description>I’ve got a strange request a few days ago regarding users getting a prompt about their Desktop location pointing to…</description><pubDate>Tue, 22 Jan 2019 14:31:49 GMT</pubDate><guid>https://evotec.xyz/es/blog/windows-server-2019-desktop-path-for-all-users-cwindowssystem32configsystemprofiledesktop</guid><category>ransomware</category><category>windows</category><category>windows 2019</category><category>windows server</category></item><item><title>Windows 2019 – Windows License Expired</title><link>https://evotec.xyz/es/blog/windows-2019-windows-license-expired</link><description>Windows Server 2019 is out now for a couple of months now, and some of you may be interested in playing with it. When you first install it, you can test it for 180 days (so-called Grace Period) after which you need to activate it with a proper production license.</description><pubDate>Sat, 19 Jan 2019 19:31:08 GMT</pubDate><guid>https://evotec.xyz/es/blog/windows-2019-windows-license-expired</guid><category>expired license</category><category>license</category><category>Windows</category><category>windows 2019</category><category>windows server</category><category>windows server 2019</category></item><item><title>Windows 2019 – How to add language pack?</title><link>https://evotec.xyz/es/blog/windows-2019-how-to-add-language-pack</link><description>Today I’ve been setting up a new server on Windows 2019. By default, I install Windows with English version even if Client works in their language such as German, Polish or Swedish. While some people install Windows in a language they desire to work with, years of experience taught me that installing English and then adding Language Pack is the best way to go. All errors, windows events, and general troubleshooting is much easier if those are in the native English language. Each version of Windows made it easier to install the language pack and have that up and running in no time. In Windows 2019 it’s even more comfortable… or is it?</description><pubDate>Wed, 02 Jan 2019 13:38:16 GMT</pubDate><guid>https://evotec.xyz/es/blog/windows-2019-how-to-add-language-pack</guid><category>windows</category><category>windows server</category><category>windows server 2019</category></item><item><title>Azure Agent – Where did my space go?</title><link>https://evotec.xyz/es/blog/azure-agent-where-did-my-space-go</link><description>If a Windows Azure VM suddenly loses disk space and Explorer does not explain it, the Azure guest agent and its logs under C:\WindowsAzure are worth checking.</description><pubDate>Wed, 28 Nov 2018 16:19:01 GMT</pubDate><guid>https://evotec.xyz/es/blog/azure-agent-where-did-my-space-go</guid><category>azure</category><category>Azure Agent</category><category>TreeSize</category><category>windows</category><category>Windows Azure</category></item><item><title>PowerShell – Environment Path is missing or overwritten</title><link>https://evotec.xyz/es/blog/powershell-environment-path-is-missing-or-overwritten</link><description>If PSModulePath is suddenly missing default module locations, PowerShell can stop discovering built-in or installed modules even though nothing seems broken at first glance.</description><pubDate>Sat, 03 Nov 2018 12:07:35 GMT</pubDate><guid>https://evotec.xyz/es/blog/powershell-environment-path-is-missing-or-overwritten</guid><category>autoit</category><category>environment</category><category>parameters</category><category>powershell</category><category>psmodulepath</category><category>variables</category><category>windows</category></item><item><title>PSBlackListChecker – Notifications to Microsoft Teams, Slack of Blacklisted IPs</title><link>https://evotec.xyz/es/blog/psblacklistchecker-notifications-to-microsoft-teams-slack-of-blacklisted-ips</link><description>If this is the first time you’re reading about this module, it’s simple PowerShell module that allows you to verify…</description><pubDate>Fri, 02 Nov 2018 21:46:18 GMT</pubDate><guid>https://evotec.xyz/es/blog/psblacklistchecker-notifications-to-microsoft-teams-slack-of-blacklisted-ips</guid><category>blacklist</category><category>blacklist ip</category><category>exchange</category><category>ip</category><category>net.dns</category><category>powershell</category><category>resolve-dns</category><category>runspaces</category><category>smtp</category><category>Windows</category><category>workflow</category></item><item><title>Update-Module – PackageManagement\Install-Package : Unable to find repository</title><link>https://evotec.xyz/es/blog/update-module-packagemanagementinstall-package-unable-to-find-repository</link><description>I was installing newest version of my PSWinDocumentation module on Windows 2016 when I noticed I can’t really get anything…</description><pubDate>Fri, 19 Oct 2018 17:04:49 GMT</pubDate><guid>https://evotec.xyz/es/blog/update-module-packagemanagementinstall-package-unable-to-find-repository</guid><category>powershell</category><category>windows</category><category>windows 2012</category><category>windows 2012R2</category><category>windows server</category></item><item><title>Windows 10 – No prompt to overwrite when pasting from .zip file</title><link>https://evotec.xyz/es/blog/windows-10-no-prompt-to-overwrite-when-pasting-from-zip-file</link><description>A copy operation from Explorer's built-in ZIP view may behave differently from a normal folder copy and skip the usual overwrite prompt, so it is worth extracting first when the target matters.</description><pubDate>Wed, 10 Oct 2018 07:23:12 GMT</pubDate><guid>https://evotec.xyz/es/blog/windows-10-no-prompt-to-overwrite-when-pasting-from-zip-file</guid><category>insiders</category><category>Windows</category><category>windows 10</category><category>windows 10 1809</category></item><item><title>PSWinDocumentation – Audit Active Directory Passwords</title><link>https://evotec.xyz/es/blog/pswindocumentation-audit-active-directory-passwords</link><description>Audit Active Directory passwords with PSWinDocumentation and breached-password data to find weak, reused, or exposed credentials before attackers do.</description><pubDate>Sun, 07 Oct 2018 17:57:42 GMT</pubDate><guid>https://evotec.xyz/es/blog/pswindocumentation-audit-active-directory-passwords</guid><category>active directory</category><category>ad</category><category>audit</category><category>powershell</category><category>windows</category></item><item><title>Windows 10 – Microsoft Store, Edge, Windows Updates, Microsoft Outlook not able to connect with error 0x80072EE7, 0x80070005</title><link>https://evotec.xyz/es/blog/windows-10-microsoft-store-edge-windows-updates-microsoft-outlook-not-able-to-connect-with-error-0x80072ee7-0x80070005</link><description>Fix Windows 10 connectivity issues where Microsoft Store, Edge, Windows Update, and Outlook fail with errors 0x80072EE7 and 0x80070005 on Insider builds.</description><pubDate>Thu, 04 Oct 2018 21:10:17 GMT</pubDate><guid>https://evotec.xyz/es/blog/windows-10-microsoft-store-edge-windows-updates-microsoft-outlook-not-able-to-connect-with-error-0x80072ee7-0x80070005</guid><category>0x800700005</category><category>0x80072EE7</category><category>insiders</category><category>Windows</category><category>windows 10</category><category>windows 10 insiders</category></item><item><title>PSWinDocumentation – Export to Word, Excel, SQL of AD, AWS, Exchange, O365 Exchange, O365 Azure AD</title><link>https://evotec.xyz/es/blog/pswindocumentation-export-to-word-excel-sql-of-ad-aws-exchange-o365-exchange-o365-azure-ad</link><description>Today I’m pushing forward with PSWinDocumentation project. I’ve fixed some bugs but I also added a couple of new features. I did lie a bit in the first sentence because this time it’s not all me. I got help from Mateusz Niemczyk who is a certified AWS engineer working for Euvic with me on some projects. If you’ve not yet guessed where I got him involved from the introduction – yes we’re adding basic AWS data support to PSWinDocumentation. But that’s not all…</description><pubDate>Sun, 23 Sep 2018 20:39:26 GMT</pubDate><guid>https://evotec.xyz/es/blog/pswindocumentation-export-to-word-excel-sql-of-ad-aws-exchange-o365-exchange-o365-azure-ad</guid><category>Active Directory</category><category>aws</category><category>Azure AD</category><category>excel</category><category>exchange</category><category>export</category><category>office 365</category><category>powershell</category><category>pswriteexcel</category><category>PSWriteWord</category><category>sql</category><category>Windows</category><category>word</category></item><item><title>PSWinReporting – Forwarders, Microsoft Teams, Slack, Microsoft SQL and more</title><link>https://evotec.xyz/es/blog/pswinreporting-forwarders-microsoft-teams-slack-microsoft-sql-and-more</link><description>It’s been a while since PSWinReporting has been updated, or rather since I’ve written a blog post about it since it’s always…</description><pubDate>Sun, 16 Sep 2018 17:59:28 GMT</pubDate><guid>https://evotec.xyz/es/blog/pswinreporting-forwarders-microsoft-teams-slack-microsoft-sql-and-more</guid><category>active directory</category><category>event log</category><category>events</category><category>microsoft teams</category><category>ms sql</category><category>powershell</category><category>slack</category><category>sql</category><category>teams</category><category>Windows</category></item><item><title>PSWinDocumentation – Version 0.1 with Word / Excel export</title><link>https://evotec.xyz/es/blog/pswindocumentation-version-0-1-with-word-excel-export</link><description>A few weeks ago I’ve released my first version of PSWinDocumentation. It was simple, one command module where you start it and get some basic AD stuff into Microsoft Word document. Today… I’m releasing a new version that has a bit bigger feature set. Are you ready for it? Let’s go!</description><pubDate>Thu, 23 Aug 2018 20:07:04 GMT</pubDate><guid>https://evotec.xyz/es/blog/pswindocumentation-version-0-1-with-word-excel-export</guid><category>active directory</category><category>ad</category><category>excel</category><category>powershell</category><category>scripts</category><category>windows</category><category>word</category></item><item><title>Windows 10 – You’ll need the internet for this 0xCAA7004 or 0xCAA30194 or 0x80072EFD</title><link>https://evotec.xyz/es/blog/windows-10-youll-need-the-internet-for-this-0xcaa7004-or-0xcaa30194</link><description>Resolve Windows 10 sign-in and connectivity problems behind the You will need the internet for this message and errors 0xCAA7004, 0xCAA30194, and 0x80072EFD.</description><pubDate>Wed, 08 Aug 2018 08:16:46 GMT</pubDate><guid>https://evotec.xyz/es/blog/windows-10-youll-need-the-internet-for-this-0xcaa7004-or-0xcaa30194</guid><category>0x80072EFD</category><category>0xCAA30194</category><category>0xCAA70004</category><category>insiders</category><category>insiders channel</category><category>windows</category><category>windows 10</category><category>windows 10 insiders</category></item><item><title>Install-Module: The term Install-Module is not recognized as the name of cmdlet, function, script file or operable program</title><link>https://evotec.xyz/es/blog/install-module-the-term-install-module-is-not-recognized-as-the-name-of-cmdlet-function-script-file-or-operable-program</link><description>If Install-Module is not recognized at all, the usual cause is that the machine is missing the PowerShellGet tooling that newer Windows PowerShell environments include.</description><pubDate>Wed, 25 Jul 2018 08:15:53 GMT</pubDate><guid>https://evotec.xyz/es/blog/install-module-the-term-install-module-is-not-recognized-as-the-name-of-cmdlet-function-script-file-or-operable-program</guid><category>install-module</category><category>PowerShell</category><category>pseventviewer</category><category>psteams</category><category>pswinreporting</category><category>pswritecolor</category><category>Windows</category></item><item><title>Windows 10 – High CPU Usage with EvntAgnt Warning Event ID 3007 in Event Log</title><link>https://evotec.xyz/es/blog/windows-10-high-cpu-usage-with-evntagnt-warning-event-id-3007-in-event-log</link><description>If Windows Event Log starts consuming CPU because EvntAgnt event 3007 is looping, check whether the SNMP service is the trigger in that specific build.</description><pubDate>Tue, 24 Jul 2018 12:13:09 GMT</pubDate><guid>https://evotec.xyz/es/blog/windows-10-high-cpu-usage-with-evntagnt-warning-event-id-3007-in-event-log</guid><category>event 3007</category><category>evntAgnt</category><category>Insiders</category><category>Windows</category><category>windows 10</category><category>windows 10 insiders</category></item><item><title>PSWriteWord – Add-WordTable / Add-WordText Expanded</title><link>https://evotec.xyz/es/blog/pswriteword-add-wordtable-add-wordtext-expanded</link><description>In this weekly release (PSWriteWord 0.4.6) there are handful of updates and tweaks to Add-WordTable and Add-WordText. If you’ve not…</description><pubDate>Sat, 07 Jul 2018 20:12:03 GMT</pubDate><guid>https://evotec.xyz/es/blog/pswriteword-add-wordtable-add-wordtext-expanded</guid><category>docx</category><category>examples</category><category>microsoft word</category><category>powershell</category><category>PSWriteWord</category><category>Windows</category><category>word</category></item><item><title>PSWriteWord – Updated to 0.4.1 (Breaking Change included)</title><link>https://evotec.xyz/es/blog/pswriteword-updated-to-0-4-1-breaking-change-included</link><description>Review the PSWriteWord 0.4.1 release, including the breaking change, document-generation fixes, and practical improvements that make Word automation scripts more reliable.</description><pubDate>Thu, 28 Jun 2018 19:47:51 GMT</pubDate><guid>https://evotec.xyz/es/blog/pswriteword-updated-to-0-4-1-breaking-change-included</guid><category>docx</category><category>examples</category><category>microsoft word</category><category>powershell</category><category>PSWriteWord</category><category>Windows</category><category>word</category></item><item><title>CollectGuestLogs.exe – High Disk Usage on Azure VM</title><link>https://evotec.xyz/es/blog/collectguestlogs-exe-high-disk-usage-on-azure-vm</link><description>If CollectGuestLogs.exe is hammering disk on an Azure VM, check the Azure Guest Agent log-collection behavior and reduce that workload before the VM becomes unusably slow.</description><pubDate>Tue, 26 Jun 2018 19:47:57 GMT</pubDate><guid>https://evotec.xyz/es/blog/collectguestlogs-exe-high-disk-usage-on-azure-vm</guid><category>azure</category><category>Azure AD</category><category>azure vm</category><category>collectguestlogs</category><category>Windows</category></item><item><title>PSWinReporting 1.0 – Monitoring Active Directrory Events</title><link>https://evotec.xyz/es/blog/pswinreporting-1-0-is-out</link><description>Few months after initial release a new public version of PSWinReporting 1.0 is released. While the name might not be…</description><pubDate>Sun, 10 Jun 2018 09:26:45 GMT</pubDate><guid>https://evotec.xyz/es/blog/pswinreporting-1-0-is-out</guid><category>active directory</category><category>ad</category><category>domain controller</category><category>email</category><category>html</category><category>monitoring</category><category>powershell</category><category>powershell gallery</category><category>powershell module</category><category>Windows</category></item><item><title>Working with Windows Events with PowerShell</title><link>https://evotec.xyz/es/blog/working-with-windows-events-with-powershell</link><description>Work with Windows Event Logs in PowerShell more effectively by querying events, filtering noisy data, and building repeatable troubleshooting workflows for servers and clients.</description><pubDate>Mon, 28 May 2018 09:28:21 GMT</pubDate><guid>https://evotec.xyz/es/blog/working-with-windows-events-with-powershell</guid><category>Active Directory</category><category>event viewer</category><category>Exchange</category><category>get-events</category><category>get-winevent</category><category>microsoft</category><category>powershell</category><category>windows</category></item><item><title>Just different approach to Active Directory Password Notifications</title><link>https://evotec.xyz/es/blog/just-different-approach-to-active-directory-password-notifications</link><description>A long time ago I’ve maintained a C# version of Password Expiry reminders. It was working based on HTML templates…</description><pubDate>Wed, 23 May 2018 15:12:36 GMT</pubDate><guid>https://evotec.xyz/es/blog/just-different-approach-to-active-directory-password-notifications</guid><category>active directory</category><category>ad</category><category>Password Notifications</category><category>passwords</category><category>PowerShell</category><category>task scheduler</category><category>tasks</category><category>Windows</category></item><item><title>Get-EventsLibrary.ps1 – Monitoring Events PowerShell</title><link>https://evotec.xyz/es/blog/get-eventslibrary-ps1-monitoring-events-powershell</link><description>This event library (Get-EventsLibrary.ps1) is PowerShell script that parses Security (mostly) logs on Domain Controllers. It has few reports capabilities…</description><pubDate>Thu, 19 Apr 2018 09:48:35 GMT</pubDate><guid>https://evotec.xyz/es/blog/get-eventslibrary-ps1-monitoring-events-powershell</guid><category>active directory</category><category>ad</category><category>domain controller</category><category>get-events</category><category>monitoring</category><category>powershell</category><category>Windows</category></item><item><title>Monitoring User, Groups Changes in Active Directory – version 0.8</title><link>https://evotec.xyz/es/blog/whats-new-event-monitoring-0-8</link><description>💡 Little introduction Event Monitoring solution written in PowerShell is an event library (Get-EventsLibrary.ps1) script that parses Security (mostly) logs on…</description><pubDate>Tue, 17 Apr 2018 19:23:09 GMT</pubDate><guid>https://evotec.xyz/es/blog/whats-new-event-monitoring-0-8</guid><category>active directory</category><category>event logs</category><category>events</category><category>powershell</category><category>script</category><category>Windows</category></item><item><title>What’s new – Event Monitoring v0.7</title><link>https://evotec.xyz/es/blog/whats-new-event-monitoring-v0-7</link><description>See what changed in Event Monitoring v0.7, including configuration updates, health-check improvements, and the known limitations that still existed at that stage.</description><pubDate>Tue, 27 Mar 2018 19:36:29 GMT</pubDate><guid>https://evotec.xyz/es/blog/whats-new-event-monitoring-v0-7</guid><category>active directory</category><category>ad</category><category>dc</category><category>domain controller</category><category>event id</category><category>event monitoring</category><category>events</category><category>monitoring</category><category>PowerShell</category><category>Windows</category></item><item><title>Get-EventLog shows wrong maximum size of event logs</title><link>https://evotec.xyz/es/blog/get-eventlog-shows-wrong-maximum-size-of-event-logs</link><description>If Get-EventLog and older WMI queries show misleading maximum log size values, Get-WinEvent can return the event log metadata more accurately.</description><pubDate>Tue, 27 Mar 2018 06:23:57 GMT</pubDate><guid>https://evotec.xyz/es/blog/get-eventlog-shows-wrong-maximum-size-of-event-logs</guid><category>event</category><category>event id</category><category>event logs</category><category>event viewer</category><category>get-eventlog</category><category>get-winevent</category><category>PowerShell</category><category>win32_nteventlogfile</category><category>Windows</category></item><item><title>What’s new – Event Monitoring v0.6</title><link>https://evotec.xyz/es/blog/whats-new-event-monitoring-v0-6</link><description>After having some feedback and seeing as some features were missing new version of Events Monitoring brings few of noticeable…</description><pubDate>Sun, 25 Mar 2018 17:19:51 GMT</pubDate><guid>https://evotec.xyz/es/blog/whats-new-event-monitoring-v0-6</guid><category>active directory</category><category>ad monitoring</category><category>changelog</category><category>event monitoring</category><category>events</category><category>PowerShell</category><category>version</category><category>Windows</category></item><item><title>Granting “Logon as a batch job” permission for Task Scheduler to work</title><link>https://evotec.xyz/es/blog/granting-logon-as-a-batch-job-permission-for-task-scheduler-to-work</link><description>If a scheduled task fails under a service or domain account, check whether the account has the Log on as a batch job right and whether Group Policy is overriding it.</description><pubDate>Fri, 23 Mar 2018 10:11:14 GMT</pubDate><guid>https://evotec.xyz/es/blog/granting-logon-as-a-batch-job-permission-for-task-scheduler-to-work</guid><category>batch job</category><category>event id 4625</category><category>events</category><category>task</category><category>task scheduler</category><category>Windows</category></item></channel></rss>