Skip to main content

Posts

Showing posts from 2020

Citrix Gateway Plug-In Certificate Access denied

We use citrix gateway Plugin+ nedsacler as our full VPN solution . The gateway is configured to check for device certificate issued by the PKI infrsatructre In one of the machines we found that the gateway plugin was not requesting to choose the certificate the first time it was opened. So it was failing the EPA check. We tried uninstall and resinstall of the plugin however it still would not open request to choose the device certifciate . We manullay edited the config.js at C:\Users\ User01 \AppData\Local\citrix\AGEE  and placed the dummy devCert highlighted in bold in the example: {"auto open homepage":false,"connectingTo":"https://vpn.domain.com","connections":[{ "devCert":"1846168a1880868155848661825646166a1868868155848a8c664e6f121468284f606c28416f6d18666e10166a186086815584818c624e4f412846151468656e1460616614606f6e,a88212e0808f64e4aa5e500e88", "name":"vpn.domain.com","url":"https://vpn.d

Teams Powershell Issues : The term 'Get-CsTeamsMeetingPolicy' is not recognized as the name of a cmdlet

While trying to run the command Get-CSTeamsMeetingPolicy,  i received follwoing errrors on the domain joined machine. PS C:\WINDOWS\system32> Get-CsTeamsMeetingPolicy Get-CsTeamsMeetingPolicy : The term 'Get-CsTeamsMeetingPolicy' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At line:1 char:1 + Get-CsTeamsMeetingPolicy + ~~~~~~~~~~~~~~~~~~~~~~~~     + CategoryInfo          : ObjectNotFound: (Get-CsTeamsMeetingPolicy:String) [], CommandNotFoundException     + FullyQualifiedErrorId : CommandNotFoundException PS C:\WINDOWS\system32> $sfbSession = New-CsOnlineSession Please enter the user principal name (ex. User@Domain.Com ): a @no.onmicrosoft.com New-PSSession : [admin2e.online.lync.com] Connecting to remote server admin2e.online.lync.com failed with the following error message : The WinRM client cannot proce

While installing OOS got this error "Certificate not found"

While installing OOS got this error "Certificate not found" PS C:\Users\admin> New-OfficeWebAppsFarm -InternalUrl "https://oos.domain.com" -ExternalUrl "https://oos.domain.com" -CertificateName "oos.domain.com" -EditingEnabled New-OfficeWebAppsFarm : Office Online was unable to find the specified certificate. At line:1 char:1 + New-OfficeWebAppsFarm -InternalUrl "https://oos.domain.com" -ExternalUrl "https://oo ... + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~     + CategoryInfo          : ObjectNotFound: (:) [New-OfficeWebAppsFarm], ArgumentException     + FullyQualifiedErrorId : CertificateNotFound,Microsoft.Office.Web.Apps.Administration.NewFarmCommand The certificate was already installed  ,however we didnt have the root and intermediate certificate added on the server once we installed root/intermediate certificate on the oos server , the command completed successfully H

Domain Join issue for VMware template

While using VMware customization wizard to deploy new machines using a template we found out the new machines are not joining the domain. As checked the netsetup log found that it had the following error NetpModifyComputerObjectInDs :  ldap_add_s failed :  0x35 Doing some searching online found that this may be because of the permission issue of the domain join account for the particular OU where you are trying to join the machine. Made sure that the join account had correct permissions delegated on the OU level After that the domain join step worked fine. Hope this helps