Forum Widgets
Latest Discussions
Microsoft Entra /Azure Connect Reinstallation and Source Anchor Change
Hello everyone, I would like to talk about the possibility of changing the SourceAnchor in Azure Connect. Officially, this is not supported by Microsoft, but there is still a way to do this via a few detours. the running AD Sync must be stopped first of all. to make the changeover, all users must first be soft-deleted. The most practical way to do this is to synchronize an OU in which there are no users. Now the Entra objects are stored under deleted It is important to note that before restoring the users who do not have an Exchange Online mailbox, Entra P1 or 2 must be removed so that a second mailbox is not created here. Now all users must be restored. After this has been done, the Immutable id of the users must be removed via PowerShell. This is possible with the following command: Get-MsolUser -all | Set-MsolUser -ImmutableID "$Null" (If this command is required for individual users, replace -all with -userpricipalname "example@email,de") If the Immutable Id has been removed for all users, the status in Entra must be set to Cloud Only. If this is the case, you can start with the next steps. It is important to note that the actions carried out above can lead to short-term failures and should therefore ideally be carried out before the weekend! In the next step, a clean uninstallation of Azure Connect must be carried out. Here I would recommend the article ADsync uninstallation from MSXFAQ where it is well explained. When uninstalling, only the steps that do not hinder a new installation should be carried out, but this is well explained in the article. after successfully uninstalling the AD Sync, there may be delays, which is why I would recommend waiting 24 hours before reinstalling. The waiting time can be skipped, but it still worked for me. as soon as you have installed the AD Sync with the new desired attribute, you can start the sync. The users should now be matched with the existing cloud objects via Softmatch. If this does not work, it is possible to delete the Immutable ID again or to correct the errors via the AD Connect error display of the Entra ID. Under the function other errors, several errors may be displayed, this was fixed by us by fixing all duplicate attribute errors. I hope this has helped you a little. I am always open to feedback!BenWelliAug 06, 2024Copper Contributor225Views0likes0CommentsAzure Openai Whipser REST endpoints
I wanted to use Whisper deployed through Azure OpenAI but I am having trouble finding the right resources for it. I am trying to integrate a translator using Whisper in a flutter app that will take multilingual input and give out the output in english. Right now the transcription is working using this endpoint: https://<dep>.openai.azure.com/openai/deployments/<name>/audio/transcriptions?api-version=2024-02-01 and structuring the request like: var uri = Uri.parse(whisperEndpoint); var request = http.MultipartRequest('POST', uri) ..headers['api-key'] = whisperApiKey ..files.add(await http.MultipartFile.fromPath('file', filePath)); What is the endpoint for translation and other services?dhruvsinha06Jul 31, 2024Copper Contributor149Views0likes0CommentsSentinel Sample Workspace
Hello - I am looking for a sample sentinel workspace and a sentinel instance where we have some incidents, rules already configured. This could be required for training someone in sentinel tool. Please help if there are any suggestions. - require a sample workspace - require some rules, incidents already enabled in the sentinel instance.santoshjjjuukkJul 16, 2024Copper Contributor198Views0likes1CommentMonitor API cost
Hello team, According to Microsoft's official documentation, we understand that they charge $0.01 for every 1000 API calls (after the free quota). How does this API charge occur? Is it based on each metric being one API call or each resource being one API call? How is this charge calculated? Microsoft nowhere mentioned this charging calculation. Thanks, Vinoth_AzureVinoth_AzureMay 15, 2024Iron Contributor324Views0likes2CommentsAzure Speech To Text Phoneme Detection
Hello, I am working on a very niche speech detection app that Azure has been very helpful for but I still have some large hurdles to cross. I would like to be able to detect a user sounding out individual phonemes. Right now, Azure's STT can split up words into phonemes for you but it refuses to provide transcriptions of phonemes by themselves. For instance, Azure will happily translate audio of you saying "la" as phonemes /l/ and /a/, but if you exclusively make the "L" sound with no vowel, azure will not respond with any phoneme data and will continue waiting for more audio. Is there any way to force Azure STT responses to be as granular as possible? I would like to be able detect isolated phonemes even when they do not combine to become a word. I am interfacing with Azure through Unity FYI. ThanksWoodrowProctorMay 10, 2024Copper Contributor410Views0likes0CommentsAzure Function Deployment Failing: [HttpException (0x80004005)]:
So I have this node js azure function which is working fine on local, and was previously working fine live as well. But now, for some reason when I try to deploy it through VS Code, it gives the following exception: 1:07:19 PM: Error: Server Error in '/' Application. ---------------------------------------- The network path was not found. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.IO.IOException: The network path was not found. Source Error: An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. Stack Trace: [IOException: The network path was not found. ] System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) +1143 System.IO.Directory.InternalCreateDirectory(String fullPath, String path, Object dirSecurityObj, Boolean checkHost) +1436 System.IO.Directory.InternalCreateDirectoryHelper(String path, Boolean checkHost) +98 System.IO.Abstractions.DirectoryWrapper.CreateDirectory(String path) +14 Kudu.Core.Infrastructure.FileSystemHelpers.EnsureDirectoryIgnoreAccessExceptions(String path) +40 Kudu.Services.Web.App_Start.NinjectServices.GetSettingsPath(IEnvironment environment) in C:\__w\1\s\Kudu.Services.Web\App_Start\NinjectServices.cs:828 Kudu.Services.Web.App_Start.NinjectServices.EnsureValidDeploymentXmlSettings(IEnvironment environment) in C:\__w\1\s\Kudu.Services.Web\App_Start\NinjectServices.cs:0 Kudu.Services.Web.App_Start.NinjectServices.RegisterServices(IKernel kernel) in C:\__w\1\s\Kudu.Services.Web\App_Start\NinjectServices.cs:157 Kudu.Services.Web.App_Start.NinjectServices.CreateKernel() in C:\__w\1\s\Kudu.Services.Web\App_Start\NinjectServices.cs:132 Ninject.Web.Common.Bootstrapper.Initialize(Func`1 createKernelCallback) +23 Kudu.Services.Web.App_Start.NinjectServices.Start() in C:\__w\1\s\Kudu.Services.Web\App_Start\NinjectServices.cs:97 [TargetInvocationException: Exception has been thrown by the target of an invocation.] System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor) +0 System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments) +269 System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) +146 WebActivatorEx.BaseActivationMethodAttribute.InvokeMethod() +81 WebActivatorEx.ActivationManager.RunActivationMethods(Boolean designerMode) +702 WebActivatorEx.ActivationManager.Run() +120 [InvalidOperationException: The pre-application start initialization method Run on type WebActivatorEx.ActivationManager threw an exception with the following error message: Exception has been thrown by the target of an invocation..] System.Web.Compilation.BuildManager.InvokePreStartInitMethodsCore(ICollection`1 methods, Func`1 setHostingEnvironmentCultures) +890 System.Web.Compilation.BuildManager.InvokePreStartInitMethods(ICollection`1 methods) +167 System.Web.Compilation.BuildManager.CallPreStartInitMethods(String preStartInitListPath, Boolean& isRefAssemblyLoaded) +133 System.Web.Compilation.BuildManager.ExecutePreAppStart() +178 System.Web.Hosting.HostingEnvironment.Initialize(ApplicationManager appManager, IApplicationHost appHost, IConfigMapPathFactory configMapPathFactory, HostingEnvironmentParameters hostingParameters, PolicyLevel policyLevel, Exception appDomainCreationException) +746 [HttpException (0x80004005): The pre-application start initialization method Run on type WebActivatorEx.ActivationManager threw an exception with the following error message: Exception has been thrown by the target of an invocation..] System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +552 System.Web.HttpRuntime.EnsureFirstRequestInit(HttpContext context) +122 System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) +737 ---------------------------------------- Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.8.4700.0 I have very little experience with Azure Functions, so pardon me if this is a very basic exception. Any help would be appreciated.zaryabro1May 03, 2024Copper Contributor396Views0likes0CommentsAzure Advisor Service Retirement Notebook
Hi Everyone I try to get automated information from theService Retirement Notebook in Azure Advisor. Is there a way to trigger Action Groups or get the affected ressources via CLI? thx, have a nice day. Michaelmichael_d0lApr 18, 2024Copper Contributor279Views0likes1CommentHow do I use Azure Data Studio with schemas?
I had thought that a database schema was the name of the structure on which tables are interconnected by primary keys and foreign keys. But in the tool, Azure Data Studio, the user is asked to select from a pre-defined set of schemas when creating a table. What is more is that when setting up or createing a database through Azure, we are given the opportuniityh to use a sample database and this is where "SalesLT" comes from and so there must be some place where we can define a schema with Azure Data Studio. Where would that be? It was generated when deciding to use a demo sample database. So there must be some way, using SQL code or otherwise, to generate a schema.wm-thompsonApr 03, 2024Brass Contributor425Views0likes0CommentsKeycloak with Azure container app
Hi Experts, I am new to Azure. We deployed keycloak in Azure ContainerApp as TCP and forwarded the request to HTTPS via Application Gateway. But We are facing a network issue when we give multiple requests to the keycloak. I noticed it is happening when the replica increased from 1 to 2. Keycloak :- 22.0.1 Port: TCP Replicas :- 1 to 30 ( condition if 30 request) Properties: env: - name: KEYCLOAK_ADMIN value: admin - name: KEYCLOAK_ADMIN_PASSWORD value: admin - name: KC_PROXY value: edge - name: KC_DB value: mysql - name: KC_DB_URL value: jdbc:mysql://xxx:3306/keycloak?useSSL=false - name: KC_DB_USERNAME value: keycloak - name: KC_DB_PASSWORD value: xxx - name: TZ value: America/New_York - name: KC_HOSTNAME_ADMIN_URL value: https://keycloakmts.xxx.com - name: KC_HOSTNAME_URL value: https://keycloakmts.xxx.com/ - name: KC_HOSTNAME_DEBUG value: 'true' - name: KC_HOSTNAME_STRICT_BACKCHANNEL value: 'true' - name: KC_CACHE value: ispnSriguruvelApr 03, 2024Copper Contributor1.1KViews0likes1CommentDifferences between AZ and Azure CLI PowerShell modules
Hi, As we all have the following PS modules: How to install Azure PowerShell How to install the Azure CLI Anybody have experiences the differences between these two? I have a feeling that they do not have the same features. There is also some published article by Microsoft: Choose the right Azure command-line toolPetri-XFeb 09, 2024Bronze Contributor1.2KViews0likes3Comments