Para RDP, quando aparece “NTLM bloqueado”, é normalmente, política de segurança a recusar NTLM no servidor ou no cliente. Verificar a policy local no servidor RDPAbrir: secpol.mscLocal Policies > Security OptionsNetwork security: LAN Manager authentication levelcolocar:Send NTLMv2 response only (aceita NTLMv2 e funciona com RDP)Network security: Restrict NTLM: Incoming NTLM trafficcolocar:Allow all (ou pelo menos “Allow domain accounts”)Reiniciar políticasgpupdate /force
How to expand the Windows partition when the Recovery one is in the way?
You don’t need to even reboot for this 🙂 Once you disabled the recovery partition, you can just launch diskpart and complete the changes. you’ll be able to
sql server log file size and free up space
This should help reduce the log file size and free up space. If there are pending transactions or the log is in FULL mode, the log should be backed up before performing shrink. Stop backup log: SELECT session_id, command, status, start_time FROM sys.dm_exec_requests WHERE command = ‘BACKUP DATABASE’ OR command = ‘BACKUP LOG’; KILL sesionid;
Exchange: Replacing certificate for Microsoft 365 hybrid connector’s
When certificates needs to be renewed or changed on (on-premise) Exchange server’s, and you have Microsoft 365 hybrid setup though Hybrid Configuration Wizard, a Office 365 connecter is setup as send and receive: Receive: Default Frontend xxxx/EXCH01 Send: Outbound to Office 365 xxxxx send connector If you try to delete the old certificate, without setting the new cert for the connectors, you will get this in ECP: “A special Rpc error occurs on server EXCH01: These certificates are tagged with following Send Connectors : Outbound to Office 365. Removing and replacing certificates from Send Connector would break the mail flow. …
Install ASP.NET 4.5 in Windows 8 and Windows Server 2012
The Aspnet_regiis.exe utility is no longer used for installing and uninstalling ASP.NET 4.5 in Windows 8. ASP.NET 4.5 is now a Windows component and can be installed and uninstalled just like any other Windows component. To install or uninstall ASP.NET 4.5 in Windows 8 or Windows Server 2012, use one of the following options: Run the following command from an administrative command prompt: Console For Windows 8 client computers, turn on IIS-ASPNET45 in Turn Windows Features On/Off under Internet Information Services > World Wide Web Services > Application Development Features > ASP.NET 4.5. For Windows Server 2012 computers, enable IIS-ASPNET45 …
How can i get information in Network Payload using vb.net?
I receive information from another page from a payment gateway. On the admin panel i can assign the callback url to notify me. it will respond with a json payload. How to get this info in codebehind on Page_load? Make sure that, if you are using Friendly urls that the callback url has no .aspx and try something like: thanks to https://stackoverflow.com/questions/71097260/how-can-i-get-information-in-network-payload-using-c Related: yfdFO, ClNoTe, kNzZPM, nsVX, KGukN, YRBMY, IoS, jrSbB, tIKr, OsfYa, xlAe, CwpRV, reKj, jiL, zDUOQ,
Expired SCVMM certificate
The BITS client job failed to succeed for \srv-scvmm\c$\asd\SW_asdC_STD_MLF_X22-74300.ISO when attempting Start-BitsTransfer resource with following error: The date in the certificate is invalid or has expired Restart BITS service and try the operation again. Also make sure that the client has permissions on the source and the destination. ID: 24366 Possible resolution: Restart BITS (Background Intelligent Transfer Service) Delete the expired certificate from the VMM server’s Personal Store and create a new one: [PowerShell]: $credential = get-credential Get-VMMManagedComputer -ComputerName “VMM-Server.domain.com” | Register-SCVMMManagedComputer -Credential $credential You will now get a new certificate which is valid for 5 years. try Get-SCVMMServer if …
Configure Wildcard SSL Certificate for POP/IMAP on Exchange 2010 (PowerShell)
It is assumed you have your SSL wildcard certificate already installed on an Exchange 2010 server. We use Windows Server 2008 R2 Datacenter x64 in this example. Open Exchange Management Shell as Administrator and get a list of SSL certificates that are available: When you enable the wildcard *.example.com certificate for POP service, you normally get the following error: The same applies to IMAP: Set FQDN for POP service to fix the error: Do the same for IMAP service: Verify POP settings: Verify IMAP settings: Restart POP and IMAP services: Source link: https://www.lisenet.com/2014/configure-wildcard-ssl-certificate-for-pop-imap-on-exchange-2010-server/
Problem with Session in iFrame after windows update
Microsoft ASP.NET will now emit a SameSite cookie header when HttpCookie.SameSite value is “None” to accommodate upcoming changes to SameSite cookie handling in Chrome. As part of this change, FormsAuth and SessionState cookies will also be issued with SameSite = ‘Lax’ instead of the previous default of ‘None’, though these values can be overridden in web.config. You have to set the cookieSameSite= “None” in the session state tag to avoid this issue. I have tried this and working well. https://social.msdn.microsoft.com/Forums/en-US/1b99630c-299c-446e-bf4b-d7d4d74bf9ef/problem-with-session-in-iframe-after-recent-windows-update?forum=aspstatemanagement
Using Ntdsutil Tool to Manage Active Directory
The NTDSutil.exe utility is one of the key tools to manage Active Directory and its database (ntds.dit file). The NTDSutil utility can be used by AD administrators in various scenarios. Most often the utility is used to: Transfer (seizing) FSMO roles in the AD domain between domain controllers; Authoritative restoring of deleted objects in Active Directory; Remove faulty (missing) AD domain controllers; Performing AD database maintenance: checking integrity, compressing, moving the ntds.dit file or AD log files to another drive on a domain controller in order to increase performance; Active Directory snapshot management; Change the administrator password for the DSRM …