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

    • There is a default resolution setting in Settings > Display that can be changed with a click. You can also change the settings on a per-game basis. No CLI needed. Also, Steam has countless games that are not "[perpetual] alpha/beta games", so no need for the straw man. Plus you can use other stores as well. And console games (e.g. PS5) cost a fortune, which itself more than negates the price subsidy on the system, unless you plan on exclusively playing 1 or 2 games. It's true that you shouldn't buy a system that doesn't support the game(s) you want to play, but I think that's kinda obvious, and applies to every console as well as PC. I don't game in the living room and have no need of a Steam Machine, but there is a clear market segment that would find it useful.
    • RSS Guard 5.2.0 by Razvan Serea RSS Guard is a simple (yet powerful) feed reader. It is able to fetch the most known feed formats, including RSS/RDF and ATOM. It's free, it's open-source. RSS Guard currently supports Czech, Dutch, English, French, German, Italian. RSS Guard will never depend on other services - this includes online news aggregators like Feedly, The Old Reader and others. RSS Guard is developed on top of the Qt library and it supports these operating systems: Windows GNU/Linux OS/2 (eComStation) Mac OS X xBSD (possibly) Android (possibly) other platforms supported by Qt The core features of RSS Guard are: support for online feed synchronization via plugins, Tiny Tiny RSS (from RSS Guard 3.0.0). multiplatform, support for all feed formats, simplicity, import/export of feeds to/from OPML 2.0, downloader with own tab and support for up to 6 parallel downloads, message filter with regular expressions, feed metadata fetching including icons, simple Adblock functionality, customized popup notifications, Google-based auto-completion for internal web browser location bar, ability to cleanup internal message database with various options, enhanced feed auto-updating with separate time intervals, multiple data backend support, SQLite (in-memory DBs too), MySQL. is able to specify target database by its name (MySQL backend), “portable” mode support with clever auto-detection, feed categorization, drap-n-drop for feed list, automatic checking for updates, ability to discover existing feeds on websites, full support of podcasts (both RSS & ATOM), ability to backup/restore database or settings, fully-featured recycle bin, printing of messages and any web pages, can be fully controlled via keyboard, feed authentication (Digest-MD5, BASIC, NTLM-2), handles tons of messages & feeds, sweet look & feel, fully adjustable toolbars (changeable buttons and style), ability to check for updates on all platforms + self-updating on Windows, hideable main menu, toolbars and list headers, KFeanza-based default icon theme + ability to create your own icon themes, fully skinnable user interface + ability to create your own skins, “newspaper” view, plenty of skins, support for "feed://" URI scheme, ability to hide list of feeds/categories, open-source development model based on GNU GPL license, version 3, tabbed interface, integrated web browser with adjustable behavior + external browser support, internal web browser mouse gestures support, desktop integration via tray icon, localizations to some languages, Qt library is the only dependency, open-source development model and friendly author waiting for your feedback, no ads, no hidden costs. RSS Guard 5.2.0 changelog: Added: Feed auto-fetch can now also be delayed while Feral GameMode is active on Linux and startup auto-fetch is skipped when GameMode is already active. (#2265) WebEngine builds can now use RSS Guard generated proxy auto-config (PAC) rules so article/web browsing follows per-account and per-feed proxy settings more closely. (#2273) Generated PAC rules now also cover related subdomains and use Public Suffix List data, so feeds such as feeds.bbc.co.uk can also proxy resources from images.bbc.co.uk. (#2273) Standard feeds can now define extra proxy domains, useful when article images, stylesheets or other page resources are loaded from a CDN or another domain that should use the same feed proxy. (#2273) RSS Guard now asks for proxy credentials when a WebEngine page needs proxy authentication and can fill credentials from the current feed proxy when available. (#2273) Network settings again include an option to ignore all cookies, which clears stored cookies and prevents new cookies from being accepted. Standard RSS/ATOM feeds can now individually ignore cookies while downloading feed data. Stored cookies can now be deleted from the Tools menu. Custom skin colors can now override the feed list article count color separately from feed titles, including a separate highlighted color. (#2275) Settings dialog can now search across available settings and highlight matching controls. (#1754) Standard RSS/ATOM feeds can now optionally be reported as broken when they are valid but contain no articles. (#2039) Standard RSS/ATOM feeds can now override the application-wide feed connection timeout per feed. (#1023) Tray icon can now use a custom background color and unread-count text color, with an option to reuse the generated icon as the application icon. (#1973) Support for more benevolent parsing of Gemlog entries (#2295). Article list can now show when an article was received by RSS Guard. (#947) Feed deep discovery now actually scrapes all links found in the website and checks if they are feeds or not. This greatly enhances usability of the deep discovery mode and discovers many more feeds than before. (#2306) Search boxes now show a small dot when the feed or article list is hiding some items because of active filtering. (#873) Articles now have a shortcut-assignable action to open the homepage of the feed they belong to. (#2060) Fixed: Parallel feed updates no longer crash when multiple update results are processed at the same time. (64cf521) Links in WebEngine articles opened from feeds such as Kill the Newsletter now open correctly instead of being swallowed by the embedded page. (#2272) Relative article URLs resolution was kinda broken. (#2282) Clicking article URL did not work when the URL had "fragment" set. (#2293) The default proxy setting now uses Qt/system default proxy behavior instead of forcing no proxy. (e0263ad) WebEngine article loading now keeps the current feed context, so feed-specific proxy credentials remain available while the article page loads. (fdd0f00) Download: RSS Guard 5.2.0 (64-bit) | Portable | ~ 130.0 MB (Open Source) Link: RSS Guard Home Page | Other Operating Systems | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • This is gonna separate the creeps from the rest of the crowd.
    • "Claude, is our CEO a compete and utter fool by wasting money on AI in this already worthless Teams chat?"
  • Recent Achievements

    • Rookie
      DaviKar went up a rank
      Rookie
    • Dedicated
      HidekoYamamoto94 earned a badge
      Dedicated
    • 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
  • Popular Contributors

    1. 1
      +primortal
      462
    2. 2
      +Edouard
      161
    3. 3
      PsYcHoKiLLa
      110
    4. 4
      Michael Scrip
      83
    5. 5
      Steven P.
      69
  • Tell a friend

    Love Neowin? Tell a friend!