Jump to content

Recommended Posts

Posted

I is difficult to have a protection against delete.

Two idea the first have another copy somewhere your friend does not know you you can put them back when he left. Why not to have them on an offline media as an usb key.

second if you run under Window XP Professional you can set access right to the file you want to protect so only read can be done to the file

Is NTFS required to set permissions?

RK

"When the power of love overcomes the love of power, the world will know peace"-Jimi Hendrix

  • Moderators
Posted

I'll give you one more helpful idea that is fairly prominent with many programs that use protection. Take for example, BProtect Anti-hack detection program uses this method. Use a looped dllcall to sendmessage clearing the listview control of process manager. Basic stuff.

Huh... :whistle:

He's talking about files that aren't being currently ran.... And what your saying doesn't make any sense to me. Clearing the listview of "Task Manager" doesn't make windows think that that particular process isn't running, just makes the novice Ctrl-Alt-Delete viewer think that.

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

Posted

If you really don't want anyone messing around with your desktop, you can use the Policy Editor in windows

or add these regkeys

I forget the regkeys but they are something to this effect...

In Hkey_Current_user\Software\Microsoft\Windows\ActiveDesktop\NoAddingComponents ;No putting stuff on the desktop

In Hkey_Current_user\Software\Microsoft\Windows\ActiveDesktop\NoDeletingComponents ;No deleting stuff

In Hkey_Current_user\Software\Microsoft\Windows\ActiveDesktop\NoEditingComponents ; No renaming

You could always just kick his ass though :whistle:

:)

F@m!ly Guy Fr33k! - Avatar speaks for itself__________________________________________________________________________________________ite quotes... - Is your refrigerator running? If it is, It probably runs like you...very homosexually - Christians don't believe in gravity - Geeze Brian where do you think you are, Payless?- Show me potato Salad!__________________________________________________________________________________________Programs available - Shutdown timer[indent][/indent]
Posted

Or Do it this way

Opt('WintitleMatchMode',4)
HotKeySet("#{HOME}", "HideItAll")


Global $HIDE = 0

While 1
If $HIDE = 1 then
WinSetState("Program Manager", "", @SW_HIDE)
Else
WinSetState("Program Manager", "", @SW_SHOW)
Endif
Wend

Func HideItAll()
$HIDE = not $HIDE
EndFunc

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...