Exchange and TLS problems
Today i have a problem that an exchange will not send mails though TLS, no matter what i do. I find out that, somehow this exchange servers where creating new send connector, with forcehelo...
Kenneth Qvistgaard Dalbjerg, IT Konsulent i århus
Today i have a problem that an exchange will not send mails though TLS, no matter what i do. I find out that, somehow this exchange servers where creating new send connector, with forcehelo...
For some reason RemoteFX USB Redirection is not enabled standard in Windows. So what to do with a non domain joined computer, you can change GPO from the Active Directory. That is not a...
If you have Installed Skype for Business and have enabled RemoteFX. You might still find that Skype for Business is saying that it using Remote Audio, even if you have redirected you USB headset....
If you have a RemoteAPP collection, and you will like to have allow you user, to access a full Desktop. This can be changed by logging into yours Remote Desktop Broker, and go to...
Today I have this problem, that no matter what I do. I could get RemoteFX to work.The strange things is it where working yesterday, and no one will admit that the have changed anything.And...
Run this command to see if any database on the SQL Server is using enterprise features
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
IF OBJECT_ID('tempdb.dbo.##enterprise_features') IS NOT NULL DROP TABLE ##enterprise_features CREATE TABLE ##enterprise_features ( dbname SYSNAME, feature_name VARCHAR(100), feature_id INT ) EXEC sp_msforeachdb N' USE [?] IF (SELECT COUNT(*) FROM sys.dm_db_persisted_sku_features) >0 BEGIN INSERT INTO ##enterprise_features SELECT dbname=DB_NAME(),feature_name,feature_id FROM sys.dm_db_persisted_sku_features END ' SELECT * FROM ##enterprise_features |
If you got an error about compression, when trying to attach the database from an enterprise version to a standard version. You will have to attach the database to an enterprise database, and remove...
WIth this command you can see witch user that have SysAdmins access.
1 2 3 4 |
SELECT name,type_desc,is_disabled FROM master.sys.server_principals WHERE IS_SRVROLEMEMBER ('sysadmin',name) = 1 ORDER BY name |
To show all MSSQL databases except the normal system databases.
1 |
select * from sys.databases WHERE name NOT IN ('master', 'tempdb', 'model', 'msdb'); |
If you have enabled that a user get lock out in Active Directory, if the user type the password wrong X times. Then you might have experienced, that yours admin account get locked out...
Sidste kommentar