Looking for a way to solve permission problem in windows 7

one of the biggest problems i have with this windows that even that i'm an administrator and the owner of the computer i always have permission problems folders i get a no access errors with files and folders even thoughe i should have full permisions i belive system restore doesn't work for me because permissions problem and i don't know what to do anymore i'v used uac i'v disable uac i downloaded a registry file to take owernship on files and folders and still problems so what can i do to solve all this problems?
and to be honest i really don't like the way windows 7 behave with permisions this is my computer and i am an administrator why do i have to fight to access folders like System Volume Information,Recovery,Documents and Settings why do i get the lock icon when i take owenership and i'm on the users list but when i add users everyting is fine?
10x in advance.:)

Hello,
This is by design. You cannot access the folder or files are protected by operation system even if your current user account is Administrator.
System Volume Information is a hidden and protected system folder that the System Restore tools uses to store it information and restore points.
In Recovery folder, there are two files: Winre.wim and boot.sdi. With these two files, you are able to boot the system to Windows Recovery Environment (WinRE) and do a repair without inserting a Windows 7 installation disc.
If you want to access the protected folders like “System Volume Information”, use the following method, but I do not recommend you do this. It may cause some potential problems:
1. Right click the System Volume Information folder and choose Properties.
2. In Security tab, click Edit and then click Add. Type in “everyone”(without quote) and click Ok.
3. Then “Everyone“ will be listed under ” Group or user names”, click Everyone, and check “allow” full control option.
As BurrWalnut said, the “Documents and Settings”, it is a junction. A junction point is also a protected operating system folder that points to another folder. The junction point is an important part of application compatibility and does not contain any data or other files. In Windows Vista and Windows 7, the “Documents and Settings” folder has been replaced with “Users” folder. All of your user profiles are saved in C:\Users\User name folder.
Thomas Lin

Similar Messages

  • Hola a todos , busco una manera de crear un pdf desde la impresora de ios, como lo puedo resolver, gracias. Hi all, I look for a way to create a PDF from the printer ios, as I can solve, thanks

    Hi all, I look for a way to create a PDF from the printer ios, as I can solve, thanks

    Try this process on your Mac. These files will be regenerated by Mac OS X with default settings.
    1. Quit the Mac App Store
    2. Trash the following folders and files; (~ is your Home folder)
    ~/Library/Caches/com.apple.appstore
    ~/Library/Caches/com.apple.storeagent
    ~/Library/Cookies/com.apple.appstore.plist
    ~/Library/Preferences/com.apple.appstore.plist
    ~/Library/Preferences/com.apple.storeagent.plist
    ~/Library/Preferences/com.apple.streagent.plist.lockfile
    Mac HD/Library/Preferences/SystemConfiguration/networkinterfaces.plist
    3. Restart your Mac
    4. Open the Mac App Store
    5. Log into your MAS account

  • Looking for a way to switch views using Javascript

    Hi ! I'm currently studying Acrobat 3D. <br /><br />I've got a PDF document with a 3D Annotation, which was imported from a U3D file. I defined 3 views : "initial", "front" and "top".<br /><br />My problem is that I'm looking for a way to switch views using Javascript. <br /><br />In fact, when I list cameras using the following code, I only get one camera called "DefaultView". So my question is : where has my "initial", "front" and "top" views been ? Is there a way I can switch between them using Javascript ?<br /><br />for(i=1;i<scene.cameras.count;++i)<br />     {<br />          Cam = scene.cameras.getByIndex(i);<br />          <br />          console.println("camera " + i + " : " + Cam.name);<br />     }<br /><br />Thank you very much in advance.<br /><br />françois

    Are the dates on these entries correct??!! Doesn't seem like it. Anyway, just in case, here's some code to help:
    //=========================================================
    backgrounder = new RenderEventHandler();
    backgrounder.onEvent = function(event)
    runtime.removeEventHandler(this);
    canvas = event.canvas;
    background = canvas.background;
    keyer = new KeyEventHandler();
    keyer.onEvent = function(event)
    switch (event.characterCode)
    case 49:
    cam = scene.cameras.getByIndex( 0 );
    canvas.setCamera( cam );
    break;
    case 50:
    cam = scene.cameras.getByIndex( 2 );
    canvas.setCamera( cam );
    break;
    case 51:
    cam = scene.cameras.getByIndex( 3 );
    canvas.setCamera( cam );
    break;
    runtime.addEventHandler( keyer );
    runtime.addEventHandler(backgrounder);
    //inform user
    console.println("Use the 1,2,3 Keys to toggle between cameras");
    //===============================================

  • Looking for a way to create/edit a newsletter online, then be able to generate a customized PDF file

    I am looking for a way to be able to customize a newsletter online, then be able to export/generate a PDF file from that newsletter.
    Basically this is for a friend that is a real estate agent, and currently she is creating the newsletters in MS Publisher. I'm hoping to find a way to be able to allow her to login to a secure area of her webpage(that part isn't a problem) but then be able to create/customize a monthly newsletter that needs to be customizable.
    For example, the August Newsletter will be 2-sided, and most of the newsletter will be the same, but she needs to be able to have a newsletter for different apartment buildings so the customers can just go to their building link/area on the webpage and be able to download that month's custom PDF file that has a portion of the main newsletter that is a table/list of properties for that specific location.  The data will be stored in a database.
    After writing the above, I can probably create a front-end to the database so she can enter everything that way, but I still need a way for her to generate the customized PDFs after she is done with that month's data.
    I was hoping Adobe had something that could be used, or am I stuck using php or Javascript and just doing this with custom scripting?
    Anyone have any ideas?
    Thanks!
    John

    I was hoping Adobe had something that could be used, or am I stuck using php or Javascript and just doing this with custom scripting?
    I think you will have to do the latter.  While you are thinking about writing the PDF file, don't overlook fpdf (google it)....

  • Looking for a way to programmatically set the visible portion of the front panel when a subVI opens

    I am looking for a way to programmatically set the visible portion of the front panel when a subVI opens.  Haven't found any posts that relate, but I'm not sure how to ask the right question.  To be clear, I want to write a helper VI to go through a list of subVIs to make sure the background images are all in the same place when their respective subVIs open.  I hate manually playing with scroll bars before I save each of the VIs...  I'm figuring I need to find the top/left location of the background image (know how to do this already) and then set a VI FP property to  these values or some offset, but I can't find the relevant property. FP:run-timeposition:custom looked promissing, but only affects the location of the window, not the area of the front panel the window is displaying.
    Solved!
    Go to Solution.

    Cool.  Getting closer.  The way I implemented your suggestion affects the subVI only if it is open.  I can use this to do what I'm after, perhaps putting the code into each subVI.  Maybe open all subs, run the helper, and save.    Seems like I'm missing the elegant version...
    My proof of concept code:

  • After update to OS X Maverick I can not open files in Lotus Notes Smart suite. Is there any way to solve this problem?

    After I updated to OS X Maverick I can not open files in Lotus Notes Smart suite. Is there any way to solve this problem?

    Ok this worked to solve the error.
    Use cmd prompt in windows 7 or 8 and run as admin:
    sc config lanmanworkstation depend= bowser/mrxsmb10/nsi
    sc config mrxsmb20 start= disabled
    No need for all that power shell nonsense as shown elsewhere for windows 8.
    That's it. Also force smb2 disabling on the apple side for good measure.
    With the above I was able to network mavericks and windows 8.1 pro flawlessly. He issues I had before where I could not read video, ISO and audio files (but could open documents and pictures from the windows machine connected to an apple network share folder went away.

  • Easier and better ways to solve current problems with Acrobat?

    Is there no better and easier way to solve the problems (installation, re-installing and crashing) with Acrobat? I really think that the ball is in Acrobat's corner right now, because I should not (for example) need to deactivate and re-activate my subscription in order to get AcrobatPro XI to work on my computer, let alone deinstalling an older version that (for now) does work, risking that in the end neither of them work. I need the (great) AdobeCloud applications to do my work as a freelancer, and I really cannot afford this kind of trouble with my applications, nore loose time repairing them. These are difficult times as it is.
    Regards,
    Marc

    Sorry, I can't. When I installed it there was no message that said I had to deinstall the old version first, and with other Adobe CC applications there had been no trouble at all, so I installed it with The previous version still on my computer.
    After installing, neither of them would start up properly, so I deinstalled version XI, after which the old version worked again, but my Adobe Application Manager does not let me download the XI version a second time, so I cannot try again.
    Regards,
    Marc
    Op 7 dec. 2012 om 00:41 heeft David Kastendick <[email protected]> het volgende geschreven:
    Re: Easier and better ways to solve current problems with Acrobat?
    created by David Kastendick in Acrobat Installation & Update Issues - View the full discussion
    The description of the issue you originally presented isn't something that I've seen happen to Acrobat when installed as a part of Creative Cloud.
    Could you provide a specific description of the behavior that occurs when you launch Acrobat XI now?
    Thanks,
    David
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/4902597#4902597
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4902597#4902597
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4902597#4902597. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Acrobat Installation & Update Issues by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Looking for a pattern to solve double-sided dependency

    Hi,
    i'm facing a problem in which i have the following code:
    public class A {
           public B createB(Class<? extends B> kindOfB, String information1, int information2, Object information3, int information4) {
                  if (kindOfB.equals(B1.class)
                     return new B1(information1);
                  if (kindOfB.equals(B2.class)
                     return new B2(information2);
                  if (kindOfB.equals(B3.class)
                     return new B3(information3, information4);
                  throw UnsupportedKindOfBException();
    public class B {}
    public class B1 extends B {
           public B1(String information1) {}
    public class B2 extends B {
           public B2(int information2) {}
    public class B3 extends B {
           public B2(Object information3, int information4) {}
    }I'm looking for a way to convert this dirty code into something nice, anyone thinking of a pattern that could help me to do that? or maybe reflection could save me?
    Thanks a lot

    I was thinking about the abstract factory pattern, the class A is a factory for objects of type B.
    But then I saw that each subclass of B is created with different types of objects.
    If this is really what you want, my guess is that you first should put all these arguments in a separate class:
         public class Data {
              private String information1;
              private int information2;
              private Object information3;
              private int information4;
              // Omitted constructors and getters/setters
         }Then there are several ways you could proceed.
    One way would be to throw away class A and simply create constructors in each Bi class which takes a Data object:
         public class B {}
         public class B1 extends B {
                public B1(Data data) {
                     this.information = data.getInformation1();
         public class B2 extends B {
                public B2(Data data) {
                     this.information = data.getInformation2();
         public class B3 extends B {
                public B2(Data data) {
                     this.information1 = data.getInformation3();
                     this.information2 = data.getInformation4();
         }The drawback of this is that each Bi gets coupled to the Data object of which it does not need everything.
    So another way would be to keep Bi untouched and similar to what you had, but now replacing the parameters in A with the Data object:
         public class A {
                public B createB(Class<? extends B> kindOfB, Data data) {
                       if (kindOfB.equals(B1.class)
                          return new B1(data.getInformation1());
                       if (kindOfB.equals(B2.class)
                          return new B2(data.getInformation2());
                       if (kindOfB.equals(B3.class)
                          return new B3(data.getInformation3(), data.getInformation4());
                       throw UnsupportedKindOfBException();
         }Depending on your use case you can indeed refactor this to use the abstract factory pattern:
         public interface BFactory {
                B createB(Data data);
         public class B1Factory implements BFactory {
              public B createB(Data data) {
                   return new B1(data.getInformation1());
         public class B2Factory implements BFactory {
              public B createB(Data data) {
                   return new B2(data.getInformation2());
         public class B3Factory implements BFactory {
              public B createB(Data data) {
                    return new B3(data.getInformation3(), data.getInformation4());
         }     This works particularly well if you have code that needs to create only one type of B at a time but it doesn't matter which type:
    public class BStructureBuilder(BFactory bFactory) {
         createSomething(List<Data> datas) {
             someStructure.add(bFactory.createB(datas.get(i)));
    }It has the added advantage that you can never request a B that doesn't exists because if class B4 comes along you would have to write a B4factory. Again depending on your usecase this can be a maintenance nightmare, so let me know if this helps and if it doesn't we could try to think of another pattern...

  • Looking for a way to directly choose keyboard layout.

    I'm looking for a way to organise separated keyboard keys combinations (or single keys - the best) for every keyboard layout. I want to be able to choose layout directly. One unique key (keys combination) for each layout.
    One way may be smth. like setting a key to execute a command:
        setxkbmap -layout "us,ru"
    and
        setxkbmap -layout "ru,us"
    For keys setup in OpenBox may be used obkey, for example.
    In general it works. But in such a case, when not latin/english layout is the first one, or even single one, in the command's layout list, applications will not react on Ctrl-S, Ctrl-Z and so on. It do not depend on current layout, it depend on the first entry in last sequence to be used in the layouts list.
    I'm shure there are some other better ways to implement the idea. Please, give me advise: what a tool, or tool set to study and use?

    Stack wrote:
    the sad clown wrote:
    (just make sure that the changed layout doesn't break your keybind):
    setxkbmap -rules xorg -model pc104 -layout us -option
    Just change the layout parameters (and any other changes you need) for as many layouts as you want.
    Unfortunately, if the single layout, or first in the list layout is not 'us', but my national, GUI applications will stop to react on Ctrl-S, Ctrl-Z and similar things.
    Can it be fixed?
    Is it that Ctrl-[S,Z] don't work or that they change locations because the keyboard layout has been modified?  The first is a problem, the second is to be expected if you are changing the keyboard layout.
    Stack wrote:
    As I catch, for testing there is no difference between setxkbmap and xorg.conf. Also, there is no way to specify there layout specific switch combinations. In coma separated list of values for XKbOptions there is not binds to corresponding position in layouts list. All the combinations will do the same - cycle between layouts. http://www.xfree86.org/current/XKB-Config2.html#5
    Layout itself and layout switching mechanics are too different objects (or classes) in terms of programming. I'm not shure I'll be on a right way, if I'll decide to dive deeply into syntax of '/usr/share/X11/xkb/rules/xorg' and '/usr/share/X11/xkb/symbols/*' (mentioned at https://wiki.archlinux.org/index.php/Co … _xorg.conf ) and hacking of ready to use layouts. If I'm searching for a way to switch them only. Am I right?
    My suggestion isn't that you use the XkbOptions switch since this won't work for what you are asking.  Instead, I'm recommending you use a little keyboard shortcut utility, xbindkeys and use that to issue the setxkbmap command I mentioned earlier.  All you have to do is bind the shortcut to keys that don't change across keyboard layout changes (if you have a number pad, an easy solution is to use a modifier + one of these keys as it won't change).  This isn't a toggle like the xorg.conf edit, but can switch to any layout you choose to bind in any order you choose to perform.

  • The way to solve the problem of AppleSyncNotifier.exe error with itunes9.1

    question:
    Apple update to itunes 9.1 ,windows os start show Error :
    "AppleSyncNotifier.exe - Unable To Locate Component",
    "This application has failed to start because iconv.dll was not found. Re-installing the applicaion may fix this problem."
    The way to solve the problem :
    Download iconv.dll file ,and copy iconv.dll file to c:\windows\system32 ,it's all working.
    http://www.dlldump.com/download-dll-files_new.php/dllfiles/I/iconv.dll/1.9/downl oad.html
    iconv.dll download url
    wish everyone successful

    The ND is not the problem, the shooter is for under-exposing...ND or not.
    Capture/convert the video to the highest-quality that you can. If all you can do is DV50, that will be okay. Make sure you use a video codec with a 4:2:2 color profile (like DV50). You will get better quality from the color-correction by using higher-quality video, like DV50, which uses twice the color information than DV25 (miniDV) to store color values.
    Try the 3-Way CC and raise the gamma (middle slider) until you can't bear it anymore. Then raise the Saturation in similar fashion as the Gamma; they don't necessarily have to be the same levels. Tweak the Blacks and Whites if desired. You will have grain/video noise in the picture (as if the gain was turned up on the camera), and there are third-party filters out there for reducing that noise, but there's not much more you can do.
    tim
    Message was edited by: ADCNR_Tim

  • Looking for a way to install Windows Intune via powershell

    I'm very new to Powershell and completely lost on how to do this.
    Looking for a way to install Windows Intune via powershell from a self extracting zip file I will send to remote users. This will also need to run Corp admin level privileges to install.
    Thank you in advance for your help.

    Hi Mtirado,
    For Windows Intune issue, I recommemd you can post in dedicated forum for more effective support:
    https://social.technet.microsoft.com/Forums/en-US/home?category=windowsintune
    If you get the initial Powershell script, and the script encounter error or problem, you can post back with current script and issue.
    Thanks for your understanding.
    If you have any feedback on our support, please click here.
    Best Regards,
    Anna Wang
    TechNet Community Support

  • I bought my iphone 5s a week before and now its volume "up" button is not working when pressed.Does anybody know what to do to make it work?I have a one year warranty.Should i give it to apple retail shop or is there any way to solve this problem?

    I bought my iphone 5s a week before and now its volume "up" button is not working when pressed.Does anybody know what to do to make it work?I have a one year warranty.Should i give it to apple retail shop or is there any way to solve this problem?

    IF it is a manufacturing defect and you bought the device from Apple or an authorized Apple retailer, then take it into Apple.

  • Looking for a way to broadcast a line in to the Airpot Express?

    Looking for a way to run line input into my macbook and broadcast it to the Airport Express to Play on my Stereo..

    It is discussed on the xfce forums but unfortunately that solution requires editing by hand. However it does seem relatively easy to automate. Writing a graphical program for those tasks is something you'd only have to do once.

  • Looking for a way to get built in audio to be heard out of AirTunes

    Looking for a way to get built in audio to be heard out of AirTunes, not just iTunes.

    thanks for the post, i downloaded that app but like i read, its really a worthless piece of junk, the 2 second delay yet alone i did not succeed to send my iChat audio to my airTunes speakers.

  • Looking for a way to Export Still Image to iPhoto

    Hi I'm looking for a way to export a still image from iMovie 08 to iPhoto 08? The simple drag, help, web search etc doesn't seem to come up with an answer but it's been a long day.
    Thanks

    Find the still within an event clip, right mouse, select add still frame to project. Repeat for all the stills you want.
    In Finder under pictures, you should find files for all the stills you created. Import them into Iphoto and there you have it.
    There is probably an easier way but this is not too bad.

Maybe you are looking for