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

    • Firefox 152.0.2 is out with fixes for performance, translation, and cloud storage services by Taras Buria A new bug-fixing update is now rolling out to Firefox users in the Release Channel. Less than a week ago, Mozilla fixed crashes on Intel Raptor Lake processors with version 152.0.1. Now, Mozilla has prepared yet another set of fixes that address problems with localization, playback issues of certain MP4 files, and performance issues on website that perform various encryption operations at once. Here is the full changelog: Firefox 152.0.2 is now available for download from Mozilla's FTP. Existing installations will get the update over the next several hours. The latest version will also be available soon on the official website, the Microsoft Store, and Neowin's Software page. You can find Firefox 152.0.2 release notes in the official documentation. In case you missed it, Mozilla released Firefox 152 earlier this month. The latest feature update brought reworked settings with a more streamlined user interface, JPEG XL support, new features for Private mode, a new way to mute a tab (just type "mute" in the address bar), and many more. You can find the complete changelog here. In other Firefox news, Mozilla recently published its roadmap, where the company detailed the upcoming Nova redesign and other features it plans to implement. Mozilla wants to make the new user interface easier to navigate and more modern, with a heavy focus on its privacy tools, such as its built-in VPN. If you are curious, you can already enable the new UI as described here.
    • Liene PixCut S1 Starter Kit gets a whopping 31% discount on Prime Day by Steven Parker Liene reached out to us to share another Prime Day exclusive deal that starts today on Amazon. It gives buyers a massive 31% off on the cost of this color sticker printer and cutting machine. It's basically an all-in-one sticker maker for DIY crafts, custom labels and gifts. It utilizes thermal dye-sublimation at 300 dpi, and offers precise "AI" auto-cutting. Here are some more of its highlights: All-in-One Convenience - Print and Cut in One Step. Say goodbye to the hassle of using separate machines. The PixCut S1 seamlessly integrates high-resolution photo printing and precise die cutting into one streamlined device. With just a few clicks on the user-friendly app, you can edit, print, and cut directly from your smartphone via Bluetooth. Create stickers in just 2 minutes! This all-in-one solution saves you time and effort, making your creative projects more enjoyable and efficient. AI Image Extraction & Precision Cutting - Unleash your creativity with the AI image extraction feature that automatically recognizes and extracts subjects from your photos. Then watch as the high-precision cutting system, guided by the same AI technology, perfectly follows every edge with pinpoint accuracy. This seamless AI-to-cut workflow ensures flawless results every time. Turn any moment into custom stickers with professional edges in minutes - just masterpieces made simple. High-Resolution Prints - Vivid and True-to-Life Colors. Utilizing thermal dye-sublimation technology, the PixCut S1 delivers stunning 300 dpi high-resolution prints with 16.7 million colors. Whether you're printing photos, stickers, or labels, you can expect vibrant, true-to-life color effects that make your creations stand out. Every detail is captured with precision, providing professional-quality results every time. AI Lab - Bring Your Imagination to Life. Upload a photo, pick a style from the Liene Photo App, and watch AI bring your vision to life instantly. Turn selfies into an anime character, a fantasy hero, or a festive holiday illustration — all with stunning realism. One style, endless versions of you. Print your AI art as custom stickers, unique gifts, or social media posts — perfect for avatars and DIY projects. No design experience required. Your creativity is just one click away from magic. Durable Stickers - Create Long-Lasting Creations .Thanks to the four-layer thermal dye-sublimation technology, the photopaper is automatically laminated during printing. Stickers produced by PixCut S1 are durable, waterproof and scratch-resistant, ensuring they remain vibrant and intactover time. Perfect for creating custom stickers, labels, and more that last. No Subscription. Just Pure Creativity. With the Liene app, available on mobile, tablet, and desktop. Unlock 40,000+ free images, fonts & elements (and growing), plus 2000+ ready-to-use templates for phone skins, lens stickers, ID cards, labels, name tags, journaling, and more. No paywalls, no hidden fees, just pure creativity. Turn any idea into a custom creation in minutes. Your imagination has no limits, neither should your software. This deal is for the Starter Kit, so what do you get? What's in the box PixCut S1 Photo Sticker Printer and Cutter x 1 Photo Sticker Cutter Ink Cartridge x 1 (36 sheets) Photo Paper 4"x6" (18 sheets) Sticker Paper 4"x7" (White) x 18 sheets Blade x 1 (Pre-installed) So in short everything you need to get printing and cutting. The Liene PixCut S1 has a 4.3 star rating after more than 1,000 reviews from customers, but we can't promise the landing page always sold this particular model, so do check out the reviews before purchasing. In any case Prime members are covered with a 30 day return or replacement should things not work out so great. Liene Pixcut S1 for $205.99 (was $299.99) 31% off Use code 15PIXCUT6 during checkout Although this is a Prime Day discount, the above code will stay live until June 30. Good to know This Amazon deal is U.S. specific, and not available in other regions unless specified. We only use first-party seller links (at the time of article publishing); ensure that you purchase from a first-party seller link only. Check out Today's Deals on Amazon | or our recent tech deals. Become a Prime member (for Students or SNAP) via Neowin Get Prime Access - Prime for half price (for qualifying Medicaid, EBT, SNAP) Subscribe to Prime Video, Audible Plus, Music Unlimited or Kindle Unlimited via Neowin As an Amazon Associate, we earn from qualifying purchases.
    • https://www.tenforums.com/tuto...b-results-windows-10-a.html Check the comment dates. Some of them are as old as 2016.
    • I wonder how many are laid off for cost savings, and this being blamed on AI to make it sound less scary and bad, for a more positive "modern, with the times" spin for investors? Because Oracle is down 14% the past year. We're looking at a company struggling here. If AI would actually be working out so well for them that they can do massive layoffs, surely this would've been reflected the past year in their stock value?
  • Recent Achievements

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

    1. 1
      +primortal
      465
    2. 2
      +Edouard
      177
    3. 3
      PsYcHoKiLLa
      97
    4. 4
      Michael Scrip
      89
    5. 5
      neufuse
      70
  • Tell a friend

    Love Neowin? Tell a friend!