Game is published but store shows "game is currently not available"
Hi there, we´ve published our newest game "16-Bit Soccer" for Xbox on 2020/12/22 midnight and the partner center shows that it´s published on the microsoft store. But when we try to find it on a xbox one it can´t be searched for. When we open…
Does Win32 API use 64 bit length pointers on 64 bit system ?
Hi! I have Win32 API (cloud filter api). On Windows 10 x64 it does not work when I create x64 app and pass IntPtr to it's function . (I have access violation memory exception). But when I build x86 app and use IntPtr with 32 length it works. So my…
Outlook addin on mobile using graph api
Hi there, I am developing an outlook addin which is using graph api. With msal, i can get the token with pop up flow in outlook web. However when i deploy it to mobile, e.g. ios outlook app, the pop up window won't show and there is no way for me to…
Run quick assist(QuickAssist.exe)) in C#
Hi, I'm making a wpf application witch starting "quickassist.exe" in system32 folder. here is my code. string path = @"C:\windows\system32\quickassist.exe"; ProcessStartInfo startInfo = new ProcessStartInfo(); …
C# Interop.Excel AddIn Error
Run Excel.exe Run C# Program -> Interop.excel ![50303-image.png][2] My SourceCode Excel.Application excel = new Excel.Application(); Excel.Workbooks workbooks = null; …
How to publish services on AKS with Nodeport service type
I want to access my services via Nodeport service type. Could you kindly confirm if it is feasible? From https://github.com/Azure/AKS/issues/518 I do see exposing service via Nodeport is not feasible yet, So I consider maybe it is not up to date. Please…
Moving MS Office 365 from old computer to a new computer
My old computer finally died after 10 GOOD years of service and I need to start using my Office 365 and SharePoint Online on a new computer I just bought. How do I go about this? I'm not adding a machine license, I'm simply REPLACING an old machine for a…
Add Taskbar pins by Group Policy without locking Start menu
W10 v1909. I am using the "Start Layout" group policy to set a few Taskbar pins for new users. The Taskbar pins are created, but the Start menu layout is locked. I do not want to create any Start pins. I have read-- …
Unable to access HTTP based Web Api from HTTPS based SharePoint site
My site collection is accessible as: https://myserver/sites/cfp I have a Web API with just one method which is accessible as: http://localhost:10000/api/CFP/GetCustomerName I can access the above API using Jquery/Ajax from an HTML page as well as…
Issue with LinkFormat.SourceFullName Property set
Hi Team, If I reset the new file path to the existing link in VBA, then I could see that it try to open the old file path while executing the SourceFullName property set statement. This is reproduced only When you have old file exist in a disk, …
Oracle Linux 7 Support on Hyper-V
I need to install Oracle Linux 7 and Above on Hyper-V (Windows Server 2012 R2) will my hypervisor support this?
What to do with its Java Native Interface library file in its filepath?
I have installed or unzipped the Java Native Interface or JNI library onto my desktop. What I want to perform next is how to reference its file path within the Xamarin IDE in Visual Studio. This question applies to the following: Visual Studio 2019…
Impossible de consulter mes factures
Bonsoir, Impossible de consulter mes factures pour l'année 2020. Mon abonnement est Office 365. Merci de me contacter au 06 52 27 35 57 ou mail patrick.deparis@pdp-consulting-ingeniery.fr Une réponse rapide est attendue. Bien à vous, …
Pushing update to VDI
Hello, We have recently deployed a Windows Server 2019 RDS VDI deployment. This deployment consists of 5 virtual windows 10 machines that provide non-persistent desktops to various users. Each of these machines was deployed via the setup wizard using a…
Extracting $content value from JSON in “File Content” when using the SharePoint “Get file content using path” action
I'm using the "Get file content using path" to retrieve a PDF document from SharePoint. In the subsequent "Set variable" action I then need to access the value of the $content property to build a json request like so: This is…
Using a Variable in a Web Activity Body? URGENT PLS
Hello! I have the following as part of my ADF Web Activity Body. My question is, can I do this? "XRefCode": "@variables('Payclass')" "XRefCode": "@{item().employeeType}", "ShortName":…
C# Xamarin Forms InAppBilling PurchaseAsync not returning after handle of playstore
I am using jamesmontenegro InAppBilling and I have a small issue regarding payments. The code is working fine but after the payment is handled by Google Play Store, the app doesn't handle the procedure and doesn't return if the purchase was successfully…
How to Treat an incorrect inputed date?
I developed a Powershell script where a IT Support must populating many fields, like Name, Surname, Description, E-mail, password and Account expires (dd/mm/yyyy) A part the script is this: $Date = Read-Host -Prompt 'Enter the end of contract date -…
SHIR Registration in Gov Cloud
I'm attempting to deploy a SHIR via on-prem VMWare VM to connect to an ADF instance in USGovTX region (Gov cloud) During the registration process I'm receiveing the following error in Event Log after clicking "Finish" …
Excel vba Sheets.rows.cut vs sheets.rows.copy
Within my workbook I have several sheets and am moving data from one sheet to another through Sheets("Master").Rows(i).Cut Destination:=Sheets(Sheet_Name).Range("A" & Sheet_Row_Num) My problem is that the .cut command takes 10…