How to increment the value during insert programmatically
Declare @Order INT=0 INSERT INTO MyTable(col1,col2,ordercol) values('abc','xyz',++@Order) this way order value is not getting incremented, but i found this way value gets incremented during update declare @i int = SELECT ISNULL(MAX(interfaceID),0) +…
Can i create a alias in internal AD to point to office 365 SMTP address to relay emails from internal application
Hi, We have a question internally, that can we create a alias (mail.domain.com) name for an office 365 SMTP address in our internal AD for our applications to relay an emails instead of using "smtp.office365.com". is it possible? Thanks …
Can someone please help fix the coding issue for the application "Apartment Rental by City?" (Exception Unhandled - "Input string was not in correct format")
Option Strict On Public Class frmApartment ' Class level private variables Public Shared _intSizeOfArray As Integer = 9 Public Shared _strDisplayCity(_intSizeOfArray) As String Private…
Zero Trust, Adaptive Auth & Solarwinds
Would Microsoft's zero trust architecture and/or adaptive authentication technology have helped to minimize the impact or more quickly identify this threat?
Logon prompts after upgrading to Outlook 2016
Hi and hope someone can help. Over the last 6 months we've migrated from on-prem Exchange 2010->2016. During this time we were also upgrading out clients from Office 2010->2016. During the transition Outlook 2010 clients had no issues,…
Enabling FileStream in AG participated Database
Hi team, I was asked to enable FileStream for one of the existing varbinary(max) column in existing table. It is already participating in Avalability Group where we have 1 primary & 1 secondary server. Now as part of the change, i am doing the…
What happens of I make one disk online when it has the same letter as the OS disk?
So I recently brought a SSD and have successfully cloned over my OS and C Drive, making it the new C Drive (system boots up as normal and it is labelled C in disk management) but now when I go to format the old C Drive it’s appearing as Offline and in…
Intune Policy deployment not accuratly showing who it has been deployed to.
Hi all, I have another very annoying Intune issue that is making it very hard to manage our Windows 10 devices. We have a bunch of policies (Baselines, security policies and classic device policies) that are deploying to Windows 10 devices without…
[Migrated from MSDN Exchange Dev] Office 365 users are restricted to a 10MB attachment Limit
[Note] This thread was originally posted on MSDN. As the MSDN Exchange Dev forum mainly focuses on developing issues and the TechNet Exchange forums for general questions have been locked down, we manually migrated this one to Microsoft Q&A platform…
UEFI PXE boot bypassing Enter on Laptop
Hi All, seeing something I have never seen before. Suddenly Dell laptops that have had the network card as the first boot device are bypassing the requirement to press Enter to continue are booting to PXE after reboot. We can plug a desktop device into…
Intune - IOS Company Portal Single App Mode - Wants to open Settings to install configuration profile
I have attempted to roll out enrollment profile which has Company Portal (VPP) run in exclusive/single app mode until sign in by end user. I gave one to test but when user signed in and profile downloaded the Company Portal app then states to open…
RemoveAccessRule is not working for non-inherited ACEs
I am using RemoveAccessRule to remove some NTFS permissions. The script (too long to post) cycles through ACEs ($DACL) and should remove the entry. It works for some folders and for others it does not work and the entry does not get removed without any…
A malicious code was querying a hard-coded DNS server instead of system DNS even that was not registering with system
A malicious code was querying a hard-coded DNS server instead of system DNS even that was not registering with system. We could see the queries at the network level (Packetbeat logs). Can you please throw some light on it?
DB2 Statements to SQL
Hi. I am trying to migrate queries from DB2 to SQL. I have few statements in DB2 which I am not sure, how to have similar statement in SQL. How to use commands / equivalent of - REFRESH TABLE , RUNSTATS in SQL ? Thanks
Accessing property from multiple Classes (MVVM WPF application)
I have been trying to learn C# by creating a small app. Recently I have been trying to implement SessionEvent for screen lock/unlock to pause the timer. I am having a problem understanding how to access timer from App.xaml.cs. Currently while locking the…
Beam like pointers invisible in text field in RDP client
I'm part of a team actively working on a HTML5 RDP client. Pointers received by the TS_COLORPOINTERATTRIBUTE PDU are transformed into cursor pointer files and applied using the CSS cursor attribute. This works except for beam like pointers! They are…
Windows 10 AlwaysON VPN with EAP-TEAP
Hello Guys, We are currently looking into using a new AlwaysOn VPN with EAP-TEAP against Cisco ASA + Cisco ISE Pair. We have tested everything with EAP-TLS (with User Certificate) and EAP-PEAP + EAP-Mschapv2 (User against AD) and everything seems to be…
How to send message to device after provisioning with mqtt x509?
I'm using the azure_sdk_for_c to provisioning with Azure it hub following the example paho_iot_provisioning_sample. I can successfully get the Hub Hostname and device ID from DPS but I don't know how to publish a message to the device. May I need to…
Find how many ticket removed, added and existing with SQL query
I have table with similar case number for different products. Hence I want to find the the case number has been added, removed and existing according to the date. I have a data something like below So the code should take data from 2020-12-02…
Help with our implementation of printing in our Direct2D Win32 app, using an ID2D1CommandList as render target.
We have a Win32 desktop app which uses Microsoft Direct2D to draw graphics to a D2D Bitmap render target. Users are then able to print those graphic objects. To do this, we switch the Direct2D render target for an ID2D1CommandList. We draw our graphics…