jonwbstr
jonwbstr
[#94730](https://github.com/MicrosoftDocs/azure-docs/issues/94730) says as of June 2022 standard SKUs are support moving between subscriptions
Confirmed, VPN moved to another subscription without any issues using a standard Public IP. That was easy!
I'll take the skew I move tomorrow, you can't disassociate IP address from VPN According to a different article On Fri, Oct 28, 2022, 7:01 PM Tom FitzMacken ***@***.***> wrote:...
@tfitzmac that is not correct, I moved a VPN gateway containing a standard IP attached to VPN gateway SKU: VpnGw1. I also moved several machines with Public IPs assigned standard...
Moving IPs between regions is still hard, but moving resources using standard IPs between subscriptions in the same region has gotten easier
https://learn.microsoft.com/en-us/azure/active-directory/conditional-access/howto-conditional-access-session-lifetime#user-sign-in-frequency says, > The Azure Active Directory (Azure AD) default configuration for user sign-in frequency is a rolling window of 90 days. Is the Azure AD Default referring to Security...
I'm confused. According to [this](https://learn.microsoft.com/en-us/azure/active-directory/authentication/howto-mfa-mfasettings#mark-a-device-as-trusted) the "Don't ask again" option is only available if we enable the "mark a device as trusted" > After you enable the remember multi-factor authentication...
Our account manager is working on adding more transparency to these tickets as well. I will let you know if I hear anything from that conversation.
The Headers hashtable stores the value generated at connection time, so the connection is only good for 60s. Not sure how to update the OTP each time a command is...
In \Private\Invoke-CWCWebRequest.ps1, I added this to always get a new OTP code. ``` $script:cwcserverconnection.Headers.'X-One-Time-Password' = $(Get-OTP -Secret $script:cwcserverconnection.Secret).Code ``` ```diff return Write-Error ($ErrorMessage | Out-String) } + $script:cwcserverconnection.Headers.'X-One-Time-Password' = $(Get-OTP...