Hidden share House$ and users$ conflict?

wrong place

This issue is beyond the scope of this site (for consumers) and to be sure, you get the best (and fastest) reply, we have to ask either on Technet (for IT Pro) or MSDN (for developers)

Tags: Windows

Similar Questions

  • Is there a way I can share files between users on the same Mac without an internet connection?

    Hello world!

    Quick question here: is there a way I can share files between users on the same Mac without an internet connection?

    I have two users say that A and B. If I go the long way via the 'Go' menu > 'Computer', I ended up being told to contact my computer or the network administrator for assistance. Both users are admin one and file sharing is allowed in system preferences... I have to admit that I use 10.9.5 because my MacBook Pro would not work with OS Xs national parks.

    Any ideas would be cool because I'm sure that it used to work fine with "Snow Leopard" without being connected to the internet - or should I just send an email to myself and recover the files on the other user :-) to recover my USB is

    Choose go to folder from the Finder Go menu, provide/Users/Shared/as the path and place the files.

    (142147)

  • Account administrator and user, Windows 7 Premium access control problems

    We have a problem with a HP/Compaq Windows 7 Premium machine 4 months old and we cannot allow any request of the UAC.

    An account on the machine is a "Standard user" without password, but when we do something like put to day or what the icon shield it and require permission from the Admin we cannot.  The alert box will appear asking you to Admin password (with no box to type, besides whom there is no account active Admin but maybe only the Super Admin account 'hidden' which is off), but also the 'Yes' button is gray and only 'no' can be clicked.

    Support PC World were unnecessary, saying full install, their stock response.  Tried enabling the 'super administrator' hidden account think it worked once before when I need administrator rights to install the software, but as unable to run CMD prompt as administrator (again because UAC comes into play), I can't seem to do.

    So now stuck with the new machine and messing around on the fighting with the OS: s I thought rightly or wrongly that the activation of the hidden Admin account would do, I'm sure that's what I did before, but I keep hitting the problem guest UAC as described above.  Therefore, the following does not work:

    ______________________________________

    Click Start, type: CMD
    In the results, click on the right button CMD
    Click on "Run as Administrator"
    at the command prompt, type: net user administrator / active: yes

    Log off, and then log on to the administrator account
    Make the appropriate changes to your accounts

    Log on to your account
    Click Start, type: CMD
    In the results, click on the right button CMD
    Click on "Run as Administrator"
    at the command prompt, type: net user administrator / active: No.

    ______________________________________

    I tried to click with the right button on CMD prompt and checking run them as administrator on the drop down menu, but UAC prompt comes up, no luck.  Also tried setting to "Run as Administrator" when raising the properties by right-clicking... same result.

    Also tried cursing at the machine... same result: o

    Any help appreciated because I'm sure that I've done it before, and there is a way to pass the CMD prompt.

    Ah finally solved.

    HP Compaq machines have their own start to use for recovery etc. software (accessible by pressing the ESC key), so I went into the system recovery using the backup utility to make sure that the external hard drive was last week 'missing' files, and then cancelled rather than clicking on the side to supplement a system recovery.

    This gave me the traditional options of safe mode,... networks, prompt etc.  Choose Mode safe mode with command prompt and Super Administrator hidden account was visible as well as the Standard user.  Choose the account super administrator, connected, activated the password protect and define it.

    At the command prompt enter:

    NET user administrator / Active: Yes

    Restarted as Standard and UAC user now works fine.

    It all started because of a need to install Open Office and then down the line a cutting machine, interrupting a Microsoft Backup, which could not be restarted without password Admin and user access control issues as described above.

    Is not to hide the Admin user at all now!

  • Ability to share scripts among users on the same Mac

    Hello

    In our design studio, we use InDesign with some scripts to automate tasks. The problem is that when a change of users from one Mac to another, scripts must be installed manually in the correct location. Is it possible that I can put the scripts in a folder (say/use/share/Indesign_Scripts") and that Indesign always uses this place?

    For now, I copied the scripts in the user model in / etc, but this doesn't always work because some users use different language settings (en_GB-> en_US)

    Hello

    Shortcuts are good, even if some people are getting lost in front of alerts "Cannot find the original file"..., but not in Design Studio, I'm sure.

    I tried another way that works, so there is no reason to keep this hide.

    3 types of scripts:

    -----------------------

    1 - simple one is placed in the 'Startup Scripts' folder of each user:

    It looks like this:

    #targetengine "menu"
    var myScPath = "~/Shared/Scripts/Studio_menu.jsx";
         if (File (myScPath).exists)
                      app.doScript(File(myScPath));
         else alert ("No network file find..., or whatever alert");
    

    -----------------------

    2nd is menu loader (' Studio_menu.jsx), so this one 1 script calls while ID begins.

    It looks like this: (thanks to Marc Autret)

    #targetengine "Scripts"
    
    var fcaTitle = "Scripts";          // name (parent menu item) displayed in ID menu
    var fcaSubTitle1 = "&Task1";     // name (name of script) displayed in ID menu
    var fcaSubTitle2 = "&Task2";    // name (name of script) displayed in ID menu
    
    var fcaHandlers1 = {
              'beforeDisplay' : function(ev1)
                        {
              mySc1Path = "~/Shared/Scripts/Task1.jsx";     // script, executor of task 1
              ev1.target.enabled = File(mySc1Path).exists;
                        },
    
              'onInvoke' : function()
                        {
                        app.doScript(File(mySc1Path));
                        }
              };
    
    var fcaHandlers2 = {
              'beforeDisplay' : function(ev2)
                        {
              mySc1Path = "~/Shared/Scripts/Task2.jsx";     // script, executor of task 2
    
              // conditions to enable/disable menu item
              ev2.target.enabled = File(mySc2Path).exists && app.documents.length > 0 && app.activeDocument.saved;
                        },
    
              'onInvoke' : function()
                        {
                        app.doScript(File(mySc2Path));
                        }
              }
    
    var fcaMenuInstaller = fcaMenuInstaller ||
    (function(mnuTitle, mnuSubTitle1, mnuSubTitle2, mnuHandlers1, mnuHandlers2)
    {
    // 1. Create the script menu action
    
    var s1mnuAction = app.scriptMenuActions.add(mnuSubTitle1);
    var s2mnuAction = app.scriptMenuActions.add(mnuSubTitle2);
    
    // 2. Attach the event listener
    var ev1, ev2;
    for( ev1 in mnuHandlers1 )
              {
              s1mnuAction.eventListeners.add(ev1,mnuHandlers1[ev1]);
              }
    for( ev2 in mnuHandlers2 )
              {
              s2mnuAction.eventListeners.add(ev2,mnuHandlers2[ev2]);
              }
    
    // 3. Create the menu item
    var fileMenu = app.menus.item("$ID/Main").submenus.item("$ID/&Help");  // new menu item's location
    
    var SubMenu = fileMenu.submenus.add(mnuTitle,LocationOptions.AT_BEGINNING);     // where
    var SubMenu1 = SubMenu.menuItems.add(s1mnuAction,LocationOptions.AT_END);
    var SubMenu2 = SubMenu.menuItems.add(s2mnuAction,LocationOptions.AT_END);
    
    return true;
    })(fcaTitle, fcaSubTitle1, fcaSubTitle2, fcaHandlers1, fcaHandlers2);
    

    ---------------------

    3rd are the real script files placed somewhere in the network (mySc1Path1, mySc1Path2)

    Users call scripts in the menu.

    Admin, updates them easly.

    Jarek

  • After the last update, the search engine shows a chart containing the symbols of share, recharge and subscribe on my mbp and imac. Please notify.

    After the last update, the search engine shows a chart containing the symbols of share, recharge and subscribe on my mbp and imac. Please notify.

    It is a problem with the extension of the RSS icon (Firefox/tools > Modules > Extensions), so you will have to disable or uninstall this extension until its developer released an update to fix this.

  • Satellite A100 - 02 M: cannot open the local area network to share files and printer - LAN Unplugged

    I have an office of another manufacturer which was connected by a wireless network via a Belkin router for a laptop another manufacturers - both running XP.

    I have now replaced the other laptop with a laptop Toshiba Satellite A100 - 02 M under Vista Home Premium. While I can still access the Internet from both machines, I can't open the LAN to share files and printers. The laptop shows 'LAN Unplugged' all the time. Any ideas would be accepted with gratitude.

    Ray Freeman

    Hello

    I have no general solution, but I'll try to give some advice solution;
    If you want to connect laptop with LAN cable both please make sure that you use a crossover ethernet cable.
    In addition, check if the network card is properly recognized in Device Manager.

    You could try updating the LAN driver and remove the NIC in Device Manager to update the installed driver.
    After restarting again the operating system should recognize the new (Lan) device and should install it automatically.

    I also studied a bit in this forum and found a similar thread:
    http://forums.computers.Toshiba-Europe.com/forums/thread.jspa?threadID=14852&MessageID=54037

    Check the proposals contained in this message.

    By the way; Microsoft provides a very useful page on Vista and how to configure the network, the file and printer sharing and troubleshooting
    http://windowshelp.Microsoft.com/Windows/en-us/networking.mspx

  • Calendar view-only and users are unable to change the time.

    We use Windows Server 2003 R2 active directory and group policy.

    Group Policy, we blocked sytem time change but after this timetable can also test block user cannt read calander also

    pls sugget me to resolve this issure

    Calendar view-only and users are unable to change the time.

    Hi sunil77,

    Your question about changes in UAC using Group Policy on Windows Server 2003, it will be better answered by the experts in the Group Policy Forum. Please repost your question to the address provided.

  • Microsoft never call houses and tell them that their computer has problems?

    Original title: scams?

    Microsoft never call houses and tell them that their computer has problems?  Some guy called who I could barely understand and wanted to guide me through some things.  They said they got my # registration of Microsoft.

    Fake phone calls to technical support

    Such unsolicited telephone calls are almost always a common scam. Do not let them give any info, do not give access to your PC, not give them all the money and do not go to all the websites that they suggest. One moment.

    Please see:

    http://www.microsoft.com/en-gb/security/online-privacy/msname.aspx .

    Microsoft does ever not requested for telephone calls of support or security.

    (such persons may use names other than Microsoft as well)

  • Whenever I update "send/receive" a message asking me to write the network password and user name.

    I am connected to wifi in the hotel (Orange) and I can't SEND email, I just have to receive them.

    Whenever I update "send/receive" a message asking me to write the network password and user name. This from my mail server (not orange because that one is ok I have access to the internet).

    Most of the suppliers do not let you send if you are not connected through them, or they have special settings.  So for now, see if you can access your e-mail via webmail and use this interface and in the future, contact your ISP and ask them if there is a way to send emails when you are connected through a different network.

    Steve

  • Windows XP 'Welcome screen and user accounts' missing.

    I have a Windows XP and recently installed NETGEAR for internet access.  My "Welcome screen and user accounts" are missing.  The user accounts are in the title of the user accounts Control Panel, but, "How users connect power, change" Windows and switch Fast has been disabled.  I now have the classic to log in to my account, but now I'm the only user on this computer.  Can you help me solve this problem without uninstalling NETGEAR?  I thank very you much for your time.

    2350sandy

    Your symptoms point to a Graphical Identification and Authentication (Msgina.dll) file that has been replaced by your netgear installation.  The following items describe your condition and suggest alternatives:

    "A discussion about the availability of the fast user switching feature.

    <>http://support.Microsoft.com/kb/294739 >

    "The default Windows logon Interface may not appear after installing third-party program"

    <>http://support.Microsoft.com/kb/302346 >

    HTH,
    JW

  • I'm unable to uninstall Windows Media Player 11, because it seems that the hidden folder $NtUninstallwmp11$ and its content have been accidentally deleted from my computer.

    I'm unable to uninstall Windows Media Player 11, because it seems that the hidden folder $NtUninstallwmp11$ and its content have been accidentally deleted from my computer by another software. I want to go back to the previous version of Windows Media Player (WMP10). Please let me know how to uninstall WMP11 or back to WMP10.

    Please note that the process mentioned in this MS article did not.
    http://support.Microsoft.com/kb/934372
    Thanks in advance.
    original title: impossible to uninstall WMP11

    Hello

    Try to restore the system to the date and time when the computer was working fine.

    Click on the link below.

    http://support.Microsoft.com/kb/306084

    If you are still experiencing a problem, I suggest you try to post in the link mentioned below.

    http://social.technet.Microsoft.com/forums/en-us/category/windowsxpitpro

  • How to share files and printers between windows xp desktop that is connected to a wireless router with a laptop running windows 7. printer is connected to the desktop computer

    Hi all.  I normally wouldn't have a problem with that, but I must be missing something.  I want to create a home network or small business between my desktop running windows xp pro sp3 and my laptop running windows 7 Home premium.  I want to share files and printers.  My desktop with windows xp computer is connected to a wireless router.  The printer is connected to my desktop as well.  My laptop is wireless with the wireless router.  I tried everything I can think of to get these two devices to the network.  If anyone can help.  Don't forget, my printer is connected to my desktop with windows xp and is connected to my wireless router which is connected to my cable modem.  Internet works fine.  the laptop with windows 7's wireless and internet works fine.  just impossible to get the two see each other or share what anyone.  Thank you.

    With respect to the sharing of printer (s), microsoft has a utility called 'Print Migrator'

    Download & install, create copy, send a copy to the other pc to share its use.

  • After got rid of the virus Fake system restore Windows, how can I restore my hidden files, folders and shortcuts?

    original title: restore the false system Windows Virus

    After got rid of the virus Fake system restore Windows, how can I restore my hidden files, folders and shortcuts?

    It is always sensible in this situation to achieve a malware check

    Start the computer in safe mode with network and download and install Malwarebytes (free version for individuals only), updated definitions and run in safe mode. Disable other security software while you do the analyses.

    http://www.Malwarebytes.org/

    Download and run SuperAntiSpyware (Free Edition)

    http://www.SUPERAntiSpyware.com/download.html

    Some malware is installing the entries of proxy server redirecting internet connections. If you encounter this problem step 2 see in the following link:

    http://www.myantispyware.com/2011/02/21/how-to-remove-Internet-Security-Essentials-virus/

  • user belongs to a domain and user does not belong to the local administrator or power users groups, or any custom group and the user is not part of the domain administrators group, but user show that it is admin

    WinXP
    user belongs to a domain and user does not belong to the local administrator or power users groups, or any custom group and the user is not part of the domain administrators group, but user show that it is admin

    I did a gpupdate/force and restart twice PC
    Yet, user indicate it is always admin when we right click on Start menu and see the possibility to open all users

    Hi elena_ad,

    Your question of Windows is more complex than what is generally answered in the Microsoft Answers forums. It is better suited for the public on the TechNet site. Please post your question in the below link:

    http://social.technet.Microsoft.com/forums/en/winserverManagement/threads

  • How to clean my computer of saved passwords and user names?

    How to clean my computer of saved passwords and user names?

    Original title: I'll sell my computer

    You must wipe the drive and reinstall the operating system. 
    Unless you want other snooping in your files you need more than just delete your user names and passwords from different places on the computer.

    Do not wipe the recovery partition.  The recovery partition is a small part of the disk that contains the files needed to restore the computer to factory State, see the computer user's manual or check the manufacturer support site for the from.

    Secure erase
    http://CMRR.UCSD.edu/people/Hughes/SecureErase.shtml

    Reinstalling the operating system will take care of the major PART of the problem, but to be completely safe, you may want to replace the hard drive.

Maybe you are looking for