Quantcast
Channel: Azure Management Portal forum
Viewing all 4189 articles
Browse latest View live

Changing the setting to my student portal account

$
0
0

I am a student at Walden University. I have problems of accessing the student portal because I am no longer using the  number +1 469 386 2599. I want to change the current setting to number +260 977 345015.

Thank you

Emily


Manage Office 365 Licensing via Azure API

$
0
0

I am at a loss. We have an issue with limited available licenses for Office 365 Pro Plus for users to use on their home/personal machines. As a result we can not add all of our users, nor does anyone want to manage this manually.

The solution I proposed is to write a web portal where users can go and selectively apply a license for their account. On the back end, the page would execute an API of some kind to Azure and assign a license. In return, they can also go to remove the license if they so desire (It will never happen but give the option).

What is the best way of doing this? The Azure management portal is extremely confusing and I can not figure out where to begin... I created an API that I can't even figure out how to use and I'm not even sure that I will be able to accomplish this using an API. Any suggestions?

I am using Visual Studio 2013 and at this point purely using a bare bones console app just to see if I can get connected and execute a test API.

Thanks!

Tony

How to link Azure VMs to a Virtual Azure Network?

$
0
0

Hi,

I have created 4 Azure VMs, and when they start up they all got a random IP address, and hence cannot communicate with one another. So I created a new Virtual Network (like I do in the Hyper-V world), in hope that I can associate the new VMs to this new Virtual Network.

However, where do I now associate my 4 VMs with this new Virtual Network? I was hoping I would be able to see something in the 'Configure' tab of my Azure VM, but this is all I can see:

Thank you,

SK


Get-MsolUser filtered variable

$
0
0

Wonder if anyone can help...

> I have a txt file containing a list of user principal names. 

> I need to return all users if they have a licence and their UPN isn't listed in the TXT file. 

 

#User Import#
$Users = Get-Content C:\Users\NAME\UserImport.txt

#Get All Licensed Users & Filtered
foreach ($Users in $MSOLUsers){
$User = Get-MsolUser -UserPrincipalName $MSOLUser
$users = Get-MsolUser -All | Where-Object {$_.isLicensed -eq $true -and $_.UserPrincipalName -notlike "*$Users*"}
$users.Count
}

 

Any help appreciated! 


Callum

do you really need NSG

$
0
0

I have three azure VNET 

VnetA <--peered with> VnetB

VnetB <--peered with--> Vent C

VNET has NVA ( Palto) that will be used a FW. Do i really need NSG's as everything goes back to from VNETB and C to VnetA NVA.

What do you guys thinks. Having NSG is like managing multiple FW's. If i spin 5 subnets and each has NSG that is too much work reviewing and managing NSG and FW rules. 

How are you guys handling all this ? 


John

Azure Backup creating a new Resource Group automatically.

$
0
0

Hi,

I am trying to keep my RGs down and every time an automated or manual backup runs for VMs in the same area as the existing recovery services vault (All in the same RG). Azure creates a new RG "AzureBackupRG_uksouth_1"

Any ideas why this is happening?

Regards,

Paul.

Job clarification

$
0
0

Dear all,

I`m Vengadavan, currently I`m working as IT Associate (System Administrator) in mid level Company and I`m having 7 Years Experience in A+, N+, MCITP, Firewall and Infrastructure Management (But I don`t have any International Certificate, just went for training and working on that Profile) . I decided to move my career into Azure Cloud, I confused to take which path will suitable for me either Azure Architect or DevOps Engineer. Any how, what ever certification I choose in cloud that`s my beginning in cloud in my career.  Kindly suggest which Path should I need to take.

Regards,

Vengadavan

Azure Shared Dashboard - do you pay for it?

$
0
0

Hi,

The official guide for sharing of a dashboard says:

"All published dashboards are implemented as Azure resources"

Does that mean that there is a related cost to shared dashboards?

Do shared dashboards cost?

Does the creation and existence of Shared Dashboards has service resource cost?

Thanks,

Ivaylo


Delete my entire account Azure

$
0
0

Hello,

I cannot see how to ERASE my account in Azure. I have already cancelled my subscription, now I want completely remove my account, with all of my informations (credit card, phone number)

My email is zoliver at gmail dot com

I have health issues and I don't want to loose hours to find a way to remove my entire account.

Thank you.

Join on-premise Windows Server 2016 to azure Active Directory via Point2Site VPN

$
0
0

Hi
I can join a VM (Win 2016 Server) to Azure AD if the VM is in the same Virtual Network as the Azure AD.

I need to join a on-premise Windows Server 2016 to Azure Active Directory via Point2Site VPN, but in this case it seems that some SRV record is missing.

An error occurred when DNS was queried for the service location (SRV) resource record used to locate an Active Directory Domain Controller (AD DC) for domain "mydomain.com".
The error was: "No records found for given DNS query."
(error code 0x0000251D DNS_INFO_NO_RECORDS)

The query was for the SRV record for _ldap._tcp.dc._msdcs.mydomain.com

The Point2Site VPN works so fare that the on-premise server can ping the DNS IP's and the IP of the VM in Azure.

Where can I have failed?

Azure | Script to list licensing mode (Direct or Group)

$
0
0
I am going crazy trying to find a way to document the day my users are licensed.
I cannot find a script on MS or online that will provide username, license mode.
The closest I found was this one from MS which doesn't show me the username or assigned license:
#the license SKU we are interested in. use Msol-GetAccountSku to see a list of all identifiers in your tenant
$skuId = "contoso:EMS"

#find all users that have the SKU license assigned
Get-MsolUser -All | where {$_.isLicensed -eq $true -and $_.Licenses.AccountSKUID -eq $skuId} | select `
ObjectId, `
@{Name="SkuId";Expression={$skuId}}, `
@{Name="AssignedDirectly";Expression={(UserHasLicenseAssignedDirectly $_ $skuId)}}, `
@{Name="AssignedFromGroup";Expression={(UserHasLicenseAssignedFromGroup $_ $skuId)}}
Anything you guys can help me with?
M

Maelito

Gradle Build - Failed to find the specified JDK version, version 8 x86

$
0
0

As of today, our Gradle Build is failing with the following error:

Error: Failed to find the specified JDK version. Please ensure the specified JDK version is installed on the agent and the environment variable 'JAVA_HOME_8_X86' exists and is set to the location of a corresponding JDK or use the [Java Tool Installer](https://docs.microsoft.com/en-us/vsts/build-release/tasks/tool/java-tool-installer) task to install the desired JDK.

We made no changes to the code - we tried with the Master branch and it happened with that as well.  We also have not changed the build definition or the agent pool definition.  Something changed in Azure DevOps.  This has also been reported in the Developer forum, so not unique to us:

https://developercommunity.visualstudio.com/content/problem/469316/hosted-vs2017-failed-to-find-jdk.html?inRegister=true

In the Gradle step of the build, we have:

Set JAVA_HOME by: JDK Version;

JDK Version: JDK 8;

JDK Architecture: x86;

Set GRADLE_OPTS: -Xmx1048m

Azure Diagnostics VM Extension: Not collecting .NET Event Source events

$
0
0

I've enabled the Azure Diagnostic Extension on an Azure Windows VM in the Monitoring > Diagnostics settings section of the VM.

I've enabled Event Tracing for Windows (ETW) events as follows:

Event Tracing for Windows ETW > Enabled

DG-AP-QA-Testing - Verbose

MyCompanyEventSource - Verbose

And I've set them to store them in the following storage account:

I'm running a simple console app on the VM that writes some events to the sources specified but nothing ends up in the storage account.

Using the Storage Explorer, these are the tables it contains, but none of them have any of the events I wrote using the .NET EventSource class.

SchemasTable
WADDiagnosticInfrastructureLogsTable
WADMetricsPT1HP10DV2S20190130
WADPerformanceCountersTable
WADWindowsEventLogsTable

What's the table name that it should collect ETW events? What can be the issue causing them not to be collected?


Apostrophe in last name not displaying properly in account drop down when account not in use.

$
0
0


I was asked to bring this post over here from Twitter.

When my personal account is not in use, it doesn't properly show the apostrophe in the accounts drop down in the Azure portal. My name shows as "Brint O&#39;Hearn"

I can switch to my personal account without issue and then my name does show up properly ("Brint O'Hearn).

"Health events" in activity log

$
0
0

I'm using the Translator Text API and during a period of heavy use, we saw a number of "health events" in our activity log. All of the events had the same following information. After the period of heavy use, we didn't see any recurrence. Is there any way to get further information about why these events were occurring? Were there simply too many calls during this period?

Mitch





Azure AD sync with external service provider

$
0
0

Hi, i am bit noob in AD so pls bear with me. 

Background:  Company abc.com currently has On-prem AD in place, and also ADFS with Azure AD (without password hashing).

In Azure AD portal, the federation is enable for domain abc.com, disable seamless SSO and pass-through authentication due to security reason. 

Now, the company abc.com want to introduce one new Learning & Development online system so wish to get the seamless sync all the ID from on-prem AD to new service provider directory.   As we cannot install the directory sync tools, so how can we make this happen?    Is it to add one more domain in federation?   Thanks. 

Communication between vNets

$
0
0

Hi guys,

I need your expertise where I make mistake. I have 3 vNets vnet1-10.10.10.0/24, vnet2-10.10.20.0/24, vnet3-10.10.30.0/24. They are in the same region as well as subscription. I have set up peering vnet1-vnet2 both ways, vnet2-vnet3 both ways. 'Allow forwarded traffic' is enabled on each conncetion. So topology looks like: vnet1 <--> vnet2 <--> vnet3. There are 3 VMs, one at each vnet. VMs' NICs have IP forwarding enabled. 

VM from vnet1 communicates with VM from vnet2 and VM from vnet3 communicates with VM from vnet2, however VM from vnet3 can't communicate with VM from vnet1. 

What Am I missing in configuration?



FedRamp vs Hippa for commercial Azure Tenant

$
0
0

There is an underlying Azure Tenant for every O365 implementation. I am on a commercial Tenant. I like to go to fedramp what would that mean ?

Do i have to signup for a new O365/ Azure Tenant?

Can my existing tenant be converted to Fed Ramp? 

Is fed-ramp or Hippa actually a tenant or certifications?

If these are mere certification how do you apply these to your existing Azure commercial tenant.

 

John

Alert on Azure policy incompliance status from activity log?

$
0
0

Is there a way to get compliance info from the activitylog for easy alerting on incompliance of resources (or at least resource groups) for a specific Policy or initiative? 

I noticed there are Audit events in the activitylog on RGs for incompliant policies and initiatives (Warning level). Looking at the properties of these events, they seem to be bundled for results from multiple Policies/Initiatives. 

Typically RGs will have multiple policies/initiatives assigned, for example the default ASC policy (which contains many controls), and additional company assigned policies.

For example: Resource Group RG1

1) Default ASC Policy initiative (many controls, many incompliant @ RG level)

2) Company Policy initiative (with all controls relevant to us)

By default, RG1 will almost always be incompliant on one or more controls in the ASC default set. It looks like the activity log does not provide a separate entry for each specific policy/initiative, which makes it impossible for the owner of RG1 to alert specifically on incompliance of that policy.

The only workaround I see would be a Log Analytics alert (querying for the policyID in the audit event), but it would make much more sense being able to alert on that using a native activitylog alert, maybe even integrate a "Create Alert" button directly from the compliance results for a specific policy/initiative.





PKI for Azure AD?

$
0
0

We have an on premises AD with local PKI we use mostly use for user and device certificate based authentication for various things such as wifi, VPN and to create SSL certificates for some intranet websites.

If we completely move to Azure AD (not hybrid AD), I don't understand how we would generate computer and user authentication certificates.  I suppose we could purchase web server certificates from a public CA for the intranet, but web server certificates are tiny percentage of the total certificates our PKI produces.

What solution is available other than keeping an hybrid AD instead of full native AAD?


Viewing all 4189 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>