Recommended Posts

post-312398-0-77078400-1309625289.png

Description

This program was designed with the end-user in mind. It allows the end-user to change a file/folders attributes or owner without the need of registry hacks or command prompt knowledge.

post-312398-0-45427800-1309625302.png

Prerequisites

  • Windows Vista (compatible with all service packs)
  • Windows 7 (compatible with all service packs)
  • Administrative Privileges (required to run program as Administrator)
  • The .NET Framework 3.5 (only for Windows Vista). This can be found here: http://www.microsoft...&displaylang=en

Changes in version 3.0.0

  • Added/Created a new icon
  • Added a remade readme
  • Added Administrator priviledges as a requirement
  • Added the ability to send bug reports (still in testing)
  • Added User detection (still in testing)
  • Removed Aero rendering
  • Removed GPU requirements
  • Redesigned the GUI
  • Embedded the Readme into the GUI
  • Rewrote the entire program from scratch (due to loss of original source code)
  • Switched project affiliation from Neowin.net to InspireNXE

We hope you enjoy using our program!

The InspireNXE Team

Ownership Changer 3.0.0.zip

Link to comment
https://www.neowin.net/forum/topic/936972-ownership-changer/
Share on other sites

I know it might be obvious to some.. but...

Is it for Windows? If so, which versions, and is it compatible with 64-bit?

I assume it just allows you to change permissions on files easily without going through several dialogs or commands? :o

I know it might be obvious to some.. but...

Is it for Windows? If so, which versions, and is it compatible with 64-bit?

I assume it just allows you to change permissions on files easily without going through several dialogs or commands? :o

It will run on Windows Vista and Windows 7.

It MAY work on Windows XP if someone has .NET framework 3.5 installed (comes from windows update). Cannot verify this myself so I haven't listed it as compatible.

Its basically a GUI way of doing what you do in the command prompt. It just makes things a lot simpler for those that are not so tech-savvy. :)

Whats is different between this and the reg file that adds the take ownership option to the right click menu ?

There is no difference except for the mere fact that this is a portable application that does not involve modifying your registry. It also can set permissions of a file unlike the registry tweak.

I tried the program and it doesn't seem to work at all. I tried a variety of things, and every time it failed to take ownership or set permissions.

I created a new folder with a random file in it.

On the file, i removed all security permissions, and gave ownership to SYSTEM. I did the same for the folder too.

It failed to take ownership of the folder.

After manually taking ownership, it failed to set permissions on the folder.

I couldn't select the file because the Browse dialog complained that I didn't have permission to access that file. :blink:

It looks like a nice utility to have, but it simply didn't work for me.

I tried the program and it doesn't seem to work at all. I tried a variety of things, and every time it failed to take ownership or set permissions.

I created a new folder with a random file in it.

On the file, i removed all security permissions, and gave ownership to SYSTEM. I did the same for the folder too.

It failed to take ownership of the folder.

After manually taking ownership, it failed to set permissions on the folder.

I couldn't select the file because the Browse dialog complained that I didn't have permission to access that file. :blink:

It looks like a nice utility to have, but it simply didn't work for me.

Same problem here

capturexh.jpg

Not everyone likes typing out commands. :)

Its basically a GUI way of doing what you do in the command prompt.

And what commands does one have to type out to take ownership??

You don't even need to use the keyboard at all - everything can be done with the mouse. For what possible reason would anyone need this tool?? If anything it would just make users more stupid, not knowing the actual place to do it.

And what commands does one have to type out to take ownership??

You don't even need to use the keyboard at all - everything can be done with the mouse. For what possible reason would anyone need this tool?? If anything it would just make users more stupid, not knowing the actual place to do it.

laugh.gif is that possible ?

And what commands does one have to type out to take ownership??

You don't even need to use the keyboard at all - everything can be done with the mouse. For what possible reason would anyone need this tool?? If anything it would just make users more stupid, not knowing the actual place to do it.

Windows requires you to click a lot of things to first take ownership, then set permissions. Vista / 7 is even worse with having to click Edit, and possibly even a few more clicks if you get UAC prompts. This program, on the other hand, would take ownership and set permissions in just a few clicks.

The Take Ownership shell extension would do the same, but this program is portable and therefore handy if you're repairing a PC.

Released version 2.6.

Added information regarding the new release in the original post.

This version works great, it gains access to folders just fine, but files still have a small problem. It only gives access to group Administrators. This means only programs running as administrator can access the file, and any program running under UAC will be unable to access the file. You have to set permissions for the current user, and not just Administrators.

The program works great otherwise. I'll be holding on to this one. :)

Edit: You can use %username% to do this:

icacls "file.txt" /grant %username%:F /t

This version works great, it gains access to folders just fine, but files still have a small problem. It only gives access to group Administrators. This means only programs running as administrator can access the file, and any program running under UAC will be unable to access the file. You have to set permissions for the current user, and not just Administrators.

The program works great otherwise. I'll be holding on to this one. :)

Oops! Will fix that in a moment.

This version works great, it gains access to folders just fine, but files still have a small problem. It only gives access to group Administrators. This means only programs running as administrator can access the file, and any program running under UAC will be unable to access the file. You have to set permissions for the current user, and not just Administrators.

The program works great otherwise. I'll be holding on to this one. :)

Edit: You can use %username% to do this:

icacls "file.txt" /grant %username%:F /t

Fixed in 2.6.5, thanks for the suggestion

procesStartInfo.Arguments = "/c icacls " + Chr(34) & TakeOwnerDialog.theFolder & Chr(34) + " /grant " + Chr(34) & Enviornment.UserName & Chr(34) + ":F /t"

Handling files is the same way without the extra flag and the variable name would be different. The Chr(34) is a way to add quotes to handle spaces and file paths and usernames.

Fixed in 2.6.5, thanks for the suggestion

procesStartInfo.Arguments = "/c icacls " + Chr(34) & TakeOwnerDialog.theFolder & Chr(34) + " /grant " + Chr(34) & Enviornment.UserName & Chr(34) + ":F /t"

Handling files is the same way without the extra flag and the variable name would be different. The Chr(34) is a way to add quotes to handle spaces and file paths and usernames.

Folders work great now, but there's still the problem of the Open File dialog complaining you don't have access to a file. It's a cheap hack, but you can switch it to a Save File dialog. :p (Just make sure to disable the overwrite file prompt)

Just one more thing, drag and drop support would be nice.

Okay, I promise I'll leave you alone now! Thanks for writing this utility and fixing all of the bugs.

Folders work great now, but there's still the problem of the Open File dialog complaining you don't have access to a file. It's a cheap hack, but you can switch it to a Save File dialog. :p (Just make sure to disable the overwrite file prompt)

Just one more thing, drag and drop support would be nice.

Okay, I promise I'll leave you alone now! Thanks for writing this utility and fixing all of the bugs.

Thats curious I will try that hack out and see what I can do with it. Thanks a ton for the suggestions and don't hesitate to throw out new ideas!

In 2.7 I hope I can resolve this open dialog error for good!

Hateful?? Not sure what I said that had any hate in it?? :blink:

You clearly stated the purpose of this tools was to not have to type out commands when asked what the purpose was

"Not everyone likes typing out commands."

And then stated

"Its basically a GUI way of doing what you do in the command prompt."

I asked what commands, since keyboard is never needed to take ownership, etc. And asked what possible reason would need this tool for -- All you doing is HIDING the standard, built in OS method from the user -- this sort of thing just makes them stupider!! And yes phenom it is possible ;)

If you want to tout it as time saving tool to lessen number of clicks for user that already understand the correct/built in method -- ok fine.. But to be honest -- this is rarely something done on any sort of reg basis.. I again do not see the point in some tool to save me a few clicks on something that might be needed now and then. If ever!

And if something done more often, and want to save time.. I would think there are much better option than running this tool.. Since to be honest - what does it save one click? You have to run this tool, then you have to tell it if its file or folder, then you have to browse to where the file or folder is, etc. etc.

Seems pointless... When I can just right click and set permissions to whatever I want, ownership to whatever I want, etc.. This tool gives no choice to who I set the owner too.

This tool is much better at a time saver

http://www.blogsdna.com/2173/add-take-ownership-option-in-right-click-context-menu-of-windows-7.htm

Right click done.. Vs run your tool, pick what to use file or folder, browse around disk, etc..

Im glad you learning and making your products available to the public -- but I just do not see the need or point of this sort of tool. Sorry, thats just my honest opinion.. Has nothing to do with hate I assure you.. I applaud you for trying and giving to the community, etc. I just wish you could find something more useful to use your skills on ;)

Hateful?? Not sure what I said that had any hate in it?? :blink:

You clearly stated the purpose of this tools was to not have to type out commands when asked what the purpose was

"Not everyone likes typing out commands."

And then stated

"Its basically a GUI way of doing what you do in the command prompt."

I asked what commands, since keyboard is never needed to take ownership, etc. And asked what possible reason would need this tool for -- All you doing is HIDING the standard, built in OS method from the user -- this sort of thing just makes them stupider!! And yes phenom it is possible ;)

If you want to tout it as time saving tool to lessen number of clicks for user that already understand the correct/built in method -- ok fine.. But to be honest -- this is rarely something done on any sort of reg basis.. I again do not see the point in some tool to save me a few clicks on something that might be needed now and then. If ever!

And if something done more often, and want to save time.. I would think there are much better option than running this tool.. Since to be honest - what does it save one click? You have to run this tool, then you have to tell it if its file or folder, then you have to browse to where the file or folder is, etc. etc.

Seems pointless... When I can just right click and set permissions to whatever I want, ownership to whatever I want, etc.. This tool gives no choice to who I set the owner too.

This tool is much better at a time saver

http://www.blogsdna....f-windows-7.htm

Right click done.. Vs run your tool, pick what to use file or folder, browse around disk, etc..

Im glad you learning and making your products available to the public -- but I just do not see the need or point of this sort of tool. Sorry, thats just my honest opinion.. Has nothing to do with hate I assure you.. I applaud you for trying and giving to the community, etc. I just wish you could find something more useful to use your skills on ;)

Regardless of your opinion, the tool is what it is. This is a chance for me to really learn the VB.net language and as such everyone has to begin somewhere. It could be different; I could be like other independent programmers who design utilities and other useful applications and never bother to release them to the community.

Above all else, I was just trying to help and learn at the same time. Besides, who really wants registry hacks to get small things accomplished? The registry is to fragile for the average user to be playing around in it. Even if the registry hack you provided in your post is as simple as double clicking and installing it. There is still always a chance it could break something in the registry.

One last thing, have you looked at the new GUI? Please find me somewhere in this registry hack that has the ability that this new GUI will provide. :) (PS. To enable the new GUI; please run the program, go to options and enable the new GUI)

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • Subtitle Edit 5.0.0 by Razvan Serea Subtitle Edit is a powerful, free, and user-friendly subtitle editing tool designed for creating, editing, and converting subtitles for videos. It supports a wide range of subtitle formats, including SRT, ****, and SUB, allowing users to easily modify and adjust subtitles for accurate timing and formatting. With its intuitive interface, Subtitle Edit provides a variety of features such as waveform audio display, spell-check, subtitle synchronization, and real-time video preview, making it an ideal choice for both beginners and professionals. The software also includes powerful tools for batch processing, translating subtitles, and converting between different subtitle formats. Subtitle Edit features: Create/adjust/sync/translate subtitle lines Convert between SubRib, MicroDVD, Advanced Sub Station Alpha, Sub Station Alpha, D-Cinema, SAMI, youtube sbv, and many more (300+ different formats!) Cool audio visualizer control - can display wave form and/or spectrogram Video player uses mpv, DirectShow, or VLC media player Visually sync/adjust a subtitle (start/end position and speed) Audio to text (speech recognition) via Whisper or Vosk/Kaldi Auto Translation via Google translate Rip subtitles from a (decrypted) dvd Import and OCR VobSub sub/idx binary subtitles Import and OCR Blu-ray .sup files - bd sup reading is based on Java code from BDSup2Sub Can open subtitles embedded inside Matroska files Can open subtitles (text, closed captions, VobSub) embedded inside mp4/mv4 files Can open/OCR XSub subtitles embedded inside divx/avi files Can open/OCR DVB and teletext subtitles embedded inside .ts/.m2ts (Transport Stream) files Can open/OCR Blu-ray subtitles embedded inside .m2ts (Transport Stream) files Merge/split subtitles Adjust display time Fix common errors wizard....and more. Subtitle Edit 5.0.0 changelog: Subtitle Edit 5 is a major new release and a big step for the project. For the first time, Subtitle Edit runs natively on Windows, macOS, and Linux from a single, modern, cross-platform codebase. The builds are self-contained, so no separate .NET installation is required, and on macOS and Linux the needed media components (mpv/ffmpeg) are bundled in. Please read before upgrading: Subtitle Edit 5 is a new application, not just an update of Subtitle Edit 4. It has been rebuilt from the ground up to be cross-platform, so: It is not 100% the same app. The look, layout, and some workflows have changed. Some things are in different places, and a few behave differently than in SE4. Not every SE4 feature exists in SE5 yet. SE5 covers all the core editing, conversion, sync, video playback, OCR, and online services, but some of the more specialized SE4 tools are not available yet. Features will continue to be added. If you rely on a specific SE4 feature that is missing, please keep SE4 installed alongside SE5. The easiest way to run both side by side is to use the Portable versions of SE4 and SE5, which keep their settings separate and do not interfere with each other. Which version should I use? Subtitle Edit 5: recommended for most users on Windows 10 (22H2) or newer, macOS 12+, and Linux. Subtitle Edit 4: please continue to use SE4 if you are on an older Windows version (Windows 7/8), or on older / slower computers where SE5 may not run well. SE4 remains available and is the right choice in those cases. To run SE4 and SE5 at the same time, use the Portable versions - you can try SE5 while keeping SE4 as a fallback. Download: Subtitle Edit 5.0.0 | ARM64 | ~60.0 MB (Open Source) Download: Subtitle Edit Portable | 103.0 MB View: Subtitle Edit Homepage | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • Google Pixel 11 series: Here's what to expect by Hamid Ganji Google Pixel 10 series In recent years, Google has successfully turned its Pixel devices into worthy contenders in the smartphone market. The search giant is now preparing to launch the Pixel 11 series in just a few months, and many Pixel fans are likely wondering what Google has in store for them this year. The next lineup of Google smartphones includes four devices: the Pixel 11, Pixel 11 Pro, Pixel 11 Pro XL, and Pixel 11 Pro Fold. This year, we don’t expect Google to bring revolutionary upgrades to its handsets, and the Pixel 11 series is likely to receive modest hardware improvements alongside a slew of AI-powered features. Here are the rumored specifications of the Google Pixel 11 series ahead of its official debut: When will the new Pixel phones be unveiled? The last two generations of Google Pixel phones (Pixel 9 series and Pixel 10 series) were launched in August, unlike the previous three generations that debuted in October. With that in mind, we expect Google to unveil the Pixel 11 series sometime in August 2026. The exact launch date has yet to be confirmed. Google Pixel 11 CAD renders - Image via AndroidHeadlines How much will the Pixel 11 series cost? Predicting the final price of upcoming smartphones has become increasingly difficult. As you may know, RAM and memory prices are rising sharply, leading to significant increases in the cost of consumer electronics. Recently, Apple CEO Tim Cook said that price increases for some future Apple products are unavoidable, suggesting that the iPhone 18 series could become more expensive. Google has remained tight-lipped about any potential price increases for the Pixel 11 series. If the company manages to maintain last year’s pricing structure, here’s what the lineup could cost: Pixel 11: $799 Pixel 11 Pro: $999 Pixel 11 Pro XL: $1,199 Pixel 11 Pro Fold: $1,799 Given current market conditions, it may be difficult for Google to avoid raising prices unless it adopts cost-saving measures, such as equipping the base model with 8GB of RAM. Google Pixel 11 series anticipated specs: We expect the Google Pixel 11 series to debut with a new Tensor G6 processor as well as an upgraded camera system. The overall design, however, is expected to remain largely unchanged across the lineup. Specifications Pixel 11 Pixel 11 Pro Pixel 11 Pro XL Pixel 11 Pro Fold Display 6.3-inch LTPO AMOLED / 120Hz refresh rate / up to 3100 nits of brightness 6.3-inch Super Actua LTPO OLED, 120Hz refresh rate, up to 3600 nits of brightness 6.8-inch Super Actua LTPO OLED, 120Hz refresh rate, up to 3600 nits of brightness 8-inch inner screen and 6.4-inch outer display, 120Hz refresh rate, up to 3600 nits of brightness RAM & Processor Tensor G6 / 8-12GB of RAM Tensor G6 / 12-16GB of RAM Tensor G6 / 12-16GB of RAM Tensor G6 / 16GB of RAM Storage options 128GB or 256GB 256GB, 512GB, 1TB 256GB, 512GB, 1TB 256GB, 512GB, 1TB Camera 50MP main sensor, 13MP ultra-wide, 10.8MP 5x telephoto, 10.5MP front camera 50MP main camera, 48MP ultra-wide, 48MP telephoto with 5x optical zoom, 42MP selfie camera 50MP main camera, 48MP ultra-wide, 48MP telephoto with 5x optical zoom, 42MP selfie camera 50MP main camera, 10.5MP ultra-wide camera, 10.8MP telephoto camera, 10MP front camera, 10MP inner camera Battery 4,840 mAh 4,707 mAh 5,000 mAh 4,658 mAh Software Android 17 Android 17 Android 17 Android 17 The Pixel 11 series won’t be a major departure from its predecessor, with Google instead focusing on subtle improvements and AI additions such as Gemini Intelligence. However, a patent filed by Google suggests the company is working on a removable battery for its smartphones, and we could see this feature make its way to the Pixel 11 Pro Fold. Given that nearly all smartphones today lack removable batteries, such a feature would be a welcome addition to future Pixel devices. That said, it may not arrive with this year’s lineup after all, and the final decision is yet to be made by Google. The Pixel 11 series could also face an uphill battle in the market. In the Android segment, Samsung is performing well with the Galaxy S26 series, while the Galaxy Z Fold 8 lineup is also expected to launch next month. On the other hand, Apple is preparing to unveil the iPhone 18 Pro and iPhone 18 Pro Max in September alongside its first foldable iPhone.
    • At least AMD is still taking Windows 10 seriously (after the oops) before it consumer extended support ends. @WaltC - Memories, 2x Voodoo in SLI with a Riva TNT with an Aureal A3D soundcard.
    • So size is the ONLY selling point????? People have been plugging in PC's to TV's in living rooms for 20+ years. I would take a bigger box for more peformance. Also lot and lots of SFF/Mini ITX build guides out there.
  • Recent Achievements

    • timbobit earned a badge
      One Month Later
    • nates earned a badge
      One Month Later
    • Almohandis earned a badge
      Week One Done
    • dorf went up a rank
      Rookie
    • mike_rumble earned a badge
      First Post
  • Popular Contributors

    1. 1
      +primortal
      475
    2. 2
      +Edouard
      172
    3. 3
      PsYcHoKiLLa
      105
    4. 4
      Michael Scrip
      88
    5. 5
      Steven P.
      70
  • Tell a friend

    Love Neowin? Tell a friend!