Disable Ctrl+Alt+Del Combination on windows7

后端 未结 6 683
甜味超标
甜味超标 2020-12-19 07:40

I\'m working on an app (Written in C#) that have a setting to run on KIOSK mode. I\'ve just an challenge here which is disabling Ctrl+Alt+Del

6条回答
  •  囚心锁ツ
    2020-12-19 08:39

    You will need to do some P/Invoke, in user32.dll, there's a method called SystemParametersInfo, check out these resources for more info

    http://pinvoke.net/search.aspx?search=SystemParametersInfo&namespace=[All]

    http://msdn.microsoft.com/en-us/library/windows/desktop/ms724947%28v=vs.85%29.aspx

    I did something similar a long while back, but no longer have the code, though I did find this (it's in vb6), but it shouldn't be too hard to get the idea and translate to .NET

    http://www.developerfusion.com/code/1021/how-to-disable-ctrlaltdel/

提交回复
热议问题