Jump to content
View in the app

A better way to browse. Learn more.

WinCert.net Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

NIM

Administrator
  • Joined

  • Last visited

Everything posted by NIM

  1. I see more than 17 accounts validating for WinCert membership. Most of these accounts are registered using yahoo.com and hotmail.com mails. There's a great posibillity that validation accounts are automatically sent to your spam or junk folder. So I would ask all of our new members who didn't receive validation mail, to check their spam folder.. Thx.
  2. NIM replied to cro-man's topic in Software Field
    Nice app, now who will create unique smilies for WinCert? :lol:
  3. He just likes to confuse people..
  4. NIM replied to skorch41's topic in Introduction
    Welcome skorch41 to WinCert. Hope you'll get and share a lot of useful information here :welcome6ld:
  5. Check this mate, don't understand a word, but link is there http://blogs.yahoo.co.jp/momo_poem/651583.html
  6. Here's the .reg file that will give you the SHIFT + Right Click = Gain Ownership context menu Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\*\shell\runas] @="Gain Ownership" "Extended"="" "NoWorkingDirectory"="" [HKEY_CLASSES_ROOT\*\shell\runas\command] @="cmd.exe /c takeown /A /f \"%1\" && icacls \"%1\" /grant administrators:F" "IsolatedCommand"="cmd.exe /c takeown /A /f \"%1\" && icacls \"%1\" /grant administrators:F" [HKEY_CLASSES_ROOT\Directory\shell\runas] @="Gain Ownership" "Extended"="" "NoWorkingDirectory"="" [HKEY_CLASSES_ROOT\Directory\shell\runas\command] @="cmd.exe /c takeown /A /f \"%1\" /r /d y && icacls \"%1\" /grant administrators:F /t" "IsolatedCommand"="cmd.exe /c takeown /A /f \"%1\" /r /d y && icacls \"%1\" /grant administrators:F /t" ownership.reg
  7. NIM replied to judge0's topic in Introduction
    You can also find it here: http://www.wincert.net/forum/index.php?showtopic=128
  8. Remember this Cyg?
  9. Now, that's a nice set of wallpapers. Thx mate.. :thumb_yello:
  10. NIM replied to NIM's topic in Announcements
    I like them, but I like original icons even more, I hope you made a backup ... But let other guys decide..
  11. NIM replied to do1x's topic in Introduction
    Welcome mate, enjoy your stay here
  12. You have to select HTML On in the post options:
  13. Mate, I'm using Firefox now and I still don't see the side panel. When you'll reply to this post, notice that you don't have smilies on the left side of this typing window..
  14. Aaaah, this one surely bring back childhood memories..
  15. I just visited your site mate, and you have the exact same problems with the skin as I do
  16. Maybe CD drivers are outdated, have you tried with manufacturer's web site?
  17. Can you post a link to your site? Did you upgrade the IPB forum, and after that reinstalled the skin, or?
  18. Can you aquire those drivers they're using. I doubt but maybe it could be related with the Vista version.
  19. Here are two sfx files. One will take ownership of the original file and made a copy of that file. Dim Act : Set Act = CreateObject("Wscript.Shell") Dim File1 For Each File1 in Wscript.Arguments Act.Run("takeown /A /f " & Chr(34) & File1 & chr(34)),1,True Act.Run("icacls " & Chr(34) & File1 & chr(34) & " /grant administrators:F"),1,True Next OwnTheFile_V2.exe Second will only take ownership of the original file. Dim Act : Set Act = CreateObject("Wscript.Shell") Dim Fso : Set Fso = CreateObject("Scripting.FileSystemObject") Dim File, File1, File2 For Each File1 in Wscript.Arguments Act.Run("takeown /A /f " & Chr(34) & File1 & chr(34)),0,True Act.Run("icacls " & Chr(34) & File1 & chr(34) & " /grant administrators:F"),0,True File2 = Split(File1,".") Set File = Fso.GetFile(File1) File.Copy(File2(0) & "_Original." & File2(1)) Next OwnTheFile_V3.exe You can use it by clicking right clicking on the desired file and choosing the option "send to" --> "own the file".
  20. Those cards that you've solved to your customers, are those the same model, if yes, which drivers do they use? I will browse the net and try to find a solution for your issue. TBH, I didn't have better luck either when I installed Vista on my home PC. First I run into trouble with my 3Com Network Card drivers, which is BTW integrated on my Asus P4C800 Deluxe MBO. I had to install XP drivers but not through setup, I had to extract them somewhere and then "fool" the setup in that way. Now, when I had access to the Web, Sound Card drivers were next. I have Creative Labs Live 24bit sound card and Creative has released the drivers for Vista, but whenever I try to install those drivers I get an error that card can't be found in the system. :wacko: So I had to install some third party-tweaked drivers from kXProject. Next step was a HP 1018 LaserJet printer driver. I went to HP site and got message that they don't support Vista yet, so I've installed XP drivers. I got bunch of error messages during installation like "subsystem error" etc, and after that I got a baloon message stating that drivers were successfully installed Anyway, printer is doin' it's job like it should with XP drivers. Next stop is a graphic driver for NVidia 6600GT graphich card. We all know how NVidia is playing with it's cosumers by delaying the release of adequate drivers for Vista. At first point I've downloaded graphic card drivers directly from Microsoft Web Site, and those drivers gave me 4.6 Windows Experience Index base score. After that I've installed newly released Vista drivers from NVidia and got 4.0 score. Now, I'm asking you, who's crazy here ??? Let's continue with AsusCom ISDN network card which is using XP drivers since there's no Vista ones.. Finally, I couldn't anywhere find drivers for my MSI Starcam Web Camera. I really don't know what to do with this issue.. Well this concludes my Vista frustration, at least for the drivers that is
  21. Hi Ernest, welcome to WinCert, I'm glad you decided to join us. Any news about I-Tab fix for IPB 2.2.2
  22. NIM replied to NIM's topic in Funny Lounge
    Totally agree with you
  23. I've noticed that VBS script works on the files directly in system32 directory Eg: sysdm.cpl, syssteup.dll but it didn't work for program files directory or files Eg: iexplore.exe or Sidebar.exe Here's the code for a new script that is working for sure (save it with .vbs extension). Just drag and drop the original file on the script and it'll modify permissions for the original file and make another copy of the same file in the source directory (backup).. Dim Act : Set Act = CreateObject("Wscript.Shell") Dim Fso : Set Fso = CreateObject("Scripting.FileSystemObject") Dim File1, File2 For Each File1 in Wscript.Arguments Act.Run("takeown /A /f " & Chr(34) & File1 & chr(34)),1,True Act.Run("icacls " & Chr(34) & File1 & chr(34) & " /grant administrators:F"),1,True File2 = Split(File1,".") Set File = Fso.GetFile(File1) File.Copy(File2(0) & "_Original." & File2(1)) Next or download this file: takeown.vbs
  24. These Icons looks nice, I'll take 'em
  25. Can you provide more information. Did you get a right click option to take file ownership or not at all. Or this script won't take ownership of the file..

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.