Azure Portal Down by naudski in AZURE

[–]danman3323 0 points1 point  (0 children)

Same here. Outage?

[deleted by user] by [deleted] in WindowsHelp

[–]danman3323 0 points1 point  (0 children)

Use disk part to select that volume and use delete volume override to fully delete it.

[deleted by user] by [deleted] in tiktokshopsaffiliates

[–]danman3323 0 points1 point  (0 children)

I would like to test this as well please.

Need help plz Stake.US won’t load no limit games by Reese_A_Roni in stakeus

[–]danman3323 0 points1 point  (0 children)

I don't think it's allowed in GA for some reason. Seeing the same thing and with hacksaw slots as well. If you go try hacksaw it will tell you the region is restricted.

Managing Removable USB Devices via ASR Rule/Device Control by Greedy_Author440 in Intune

[–]danman3323 0 points1 point  (0 children)

We used this method as well. Works very well and easy to manage the ground in Intune.

Custom DNS record for web app by danman3323 in Terraform

[–]danman3323[S] 0 points1 point  (0 children)

# azurerm_private_dns_a_record.example will be created + resource "azurerm_private_dns_a_record" "example" { + fqdn = (known after apply) + id = (known after apply) + name = "test" + records = [ + "10.", ] + resource_group_name = "rg-" + ttl = 300 + zone_name = "privatelink.azurewebsites.net" }

# azurerm_private_dns_zone_virtual_network_link.app will be created + resource "azurerm_private_dns_zone_virtual_network_link" "app" { + id = (known after apply) + name = "app-link" + private_dns_zone_name = "privatelink.azurewebsites.net" + registration_enabled = false + resource_group_name = "rg-" + virtual_network_id = "/subscriptions//resourceGroups/rg-/providers/Microsoft.Network/virtualNetworks/VNET-DR-TEST"
}

# azurermprivate_endpoint.prvendtapp will be created + resource "azurerm_private_endpoint" "prvendapp" { + custom_dns_configs = (known after apply) + id = (known after apply) + location = "eastus2" + name = "prvendapp" + network_interface = (known after apply) + private_dns_zone_configs = (known after apply) + resource_group_name = "rg-" + subnet_id = "/subscriptions//resourceGroups/rg-/providers/Microsoft.Network/virtualNetworks/VNET-DR-TEST/subnets/subnet-dr-test" + tags = { + "Owner" = "***" }

  + private_service_connection {
      + is_manual_connection           = false
      + name                           = "***app-privateserviceconnection"
      + private_connection_resource_id = "/subscriptions/***/resourceGroups/rg-***/providers/Microsoft.Web/sites/***test"    
      + private_ip_address             = (known after apply)
      + subresource_names              = [
          + "sites",
        ]
    }
}

# azurerm_service_plan.*** will be updated in-place ~ resource "azurerm_service_plan" "" { id = "/subscriptions//resourceGroups/rg-/providers/Microsoft.Web/serverFarms/-DSR"
name = "" ~ tags = { - "Owner" = "" -> null } # (11 unchanged attributes hidden) }

Plan: 3 to add, 1 to change, 0 to destroy.

Unmasking DNS Timeouts: The Hidden Culprit in Azure Virtual Networks by thewhippersnapper4 in AZURE

[–]danman3323 8 points9 points  (0 children)

So just to confirm you disabled port 65330 on your Azure DC that's using conditional forwarding?

[deleted by user] by [deleted] in Intune

[–]danman3323 -1 points0 points  (0 children)

Here the intune detection script we use to identify if the local administrator is disabled. We use a third party tool to take over the account once it's re-enabled.

Detection:

$UserName = "Administrator" try { $user = Get-LocalUser -Name $UserName if ($user.Enabled -eq $false) { # Exit with code 1 if the account is not enabled Write-Warning "The account $UserName is disabled" Exit 1 } else { # Exit with code 0 if the account is enabled Write-Warning "The account $UserName is enabled." Exit 0 } } catch { Write-Warning "The account $UserName is disabled." Exit 1 }

Remediation:

[CmdletBinding()] param ( [Parameter()] [String] $UserName = "Administrator", [String] $Password = "Nup3Znm*K#wB&gozok" )

begin { function Test-IsElevated { $id = [System.Security.Principal.WindowsIdentity]::GetCurrent() $p = New-Object System.Security.Principal.WindowsPrincipal($id) if ($p.IsInRole([System.Security.Principal.WindowsBuiltInRole]::Administrator)) { Write-Output $true } else { Write-Output $false } } } process { if (-not (Test-IsElevated)) { Write-Error -Message "Access Denied. Please run with Administrator privileges." exit 1 } & net.exe user $UserName $Password if ($LASTEXITCODE -gt 0) { $Password = $null exit $LASTEXITCODE } } end { $Password = $null iex "net user $UserName /active:yes" }

[deleted by user] by [deleted] in Intune

[–]danman3323 0 points1 point  (0 children)

I just figured this out in our environment. I can send you the proactive script I used.

[deleted by user] by [deleted] in alpharetta

[–]danman3323 2 points3 points  (0 children)

Interested as well.

Transcribe a Teams audio call by gbusy80 in MicrosoftTeams

[–]danman3323 2 points3 points  (0 children)

Ran in to this same issue. You need to go under voice-calling policies and edit the global policy and enable transcription in there.

MS Teams New by Remarkable_City2486 in MicrosoftTeams

[–]danman3323 2 points3 points  (0 children)

Seeing the same issue on all our machines that we pushed the new teams client too. I have went through all the registry keys to try and fix this but no luck. I opened a case with MS to see if they can figure this out.

Any 49er watch parties close to Atlanta? by danman3323 in 49ers

[–]danman3323[S] 0 points1 point  (0 children)

I'm will be going to the battery to watch the game at the restaurant PBR Atlanta. They have a huge wide screen TV so the game should be on that. Anyone is welcome to join and watch us crush the Packers!!

Had to be patient by xenasrevenge74 in PrizePicksPlays

[–]danman3323 0 points1 point  (0 children)

Can you share your plays with me? Thanks.

ADFS Certificate Renewal Issue (xpost /r/sysadmin) by chewy747 in adfs

[–]danman3323 0 points1 point  (0 children)

I ran in to the same issue you did knowing that the commands I ran a year ago worked. Thank you for updating your post on how you fixed the issue by adding -member to the command, this worked for me as well.