Preoblem with Browse facility in Terminal Server with Normal User Login!!!

Hii All,
       I am facing a problem with my addon in which I am using browsing facility.
       But the Browse facility is working properly  in Terminal Server with Administrator Login, but not working in Terminal Server with Normal User Login.
       So how it can be solved?
Thanks & Regards,
Nabanita
Edited by: ghosh.nabanita on Aug 9, 2011 12:47 PM
Edited by: ghosh.nabanita on Aug 9, 2011 1:46 PM

Hi,
You have to check group polices if browsing is enabled.
Check this thread:
http://social.technet.microsoft.com/Forums/en-US/winserverGP/thread/336377db-e0cb-4c8e-b7c7-01b7c11c0e27/

Similar Messages

  • Set "peoples or groups" field with current user "login name" in sharepoint list form using javascript

    hi friends
    i am trying to set peoples or groups field in sharepoint  list form with current user login name
    here my code
    <script src="http://ajax.aspnetcdn.com/ajax/jquery/jquery-1.9.0.js"></script>
    <script type="text/javascript">
    $(document).ready(function NewItemView () {
    var currentUser;
        if (SP.ClientContext != null) {
          SP.SOD.executeOrDelayUntilScriptLoaded(getCurrentUser, 'SP.js');
        else {
          SP.SOD.executeFunc('sp.js', null, getCurrentUser);
        function getCurrentUser() {
          var context = new SP.ClientContext.get_current();
          var web = context.get_web();
          currentUser = web.get_currentUser();
          context.load(currentUser);
          context.executeQueryAsync(onSuccessMethod, onRequestFail);
        function onSuccessMethod(sender, args) {
          var account = currentUser.get_loginName();
          var accountEmail = currentUser.get_email();
          var currentUserAccount = account.substring(account.indexOf("|") + 1);
        SetAndResolvePeoplePicker("requester",account);
    // This function runs if the executeQueryAsync call fails.
        function onRequestFail(sender, args) {
          alert('request failed' + args.get_message() + '\n' + args.get_stackTrace());
     function SetAndResolvePeoplePicker(fieldName, userAccountName) {
       var controlName = fieldName;
        var peoplePickerDiv = $("[id$='ClientPeoplePicker'][title='" + controlName + "']");
        var peoplePickerEditor = peoplePickerDiv.find("[title='" + controlName + "']");
        var spPeoplePicker = SPClientPeoplePicker.SPClientPeoplePickerDict[peoplePickerDiv[0].id];
        peoplePickerEditor.val(userAccountName);
        spPeoplePicker.AddUnresolvedUserFromEditor(true);
    </script>
    but it is not working
    please help me

    Hi,
    According to your post, my understanding is that you wanted to set "peoples or groups" field with current user "login name" in SharePoint list form using JavaScript.
    To set "peoples or groups" field with current user "login name”,  you can use the below code:
    <script src="http://ajax.aspnetcdn.com/ajax/jquery/jquery-1.9.0.js"></script>
    <script type="text/javascript">
    function SetPickerValue(pickerid, key, dispval) {
    var xml = '<Entities Append="False" Error="" Separator=";" MaxHeight="3">';
    xml = xml + PreparePickerEntityXml(key, dispval);
    xml = xml + '</Entities>';
    EntityEditorCallback(xml, pickerid, true);
    function PreparePickerEntityXml(key, dispval) {
    return '<Entity Key="' + key + '" DisplayText="' + dispval + '" IsResolved="True" Description="' + key + '"><MultipleMatches /></Entity>';
    function GetCurrentUserAndInsertIntoUserField() {
    var context = new SP.ClientContext.get_current();
    var web = context.get_web();
    this._currentUser = web.get_currentUser();
    context.load(this._currentUser);
    context.executeQueryAsync(Function.createDelegate(this, this.onSuccess),
    Function.createDelegate(this, this.onFailure));
    function onSuccess(sender, args) {
    SetPickerValue('ctl00_m_g_99f3303a_dffa_4436_8bfa_3511d9ffddc0_ctl00_ctl05_ctl01_ctl00_ctl00_ctl04_ctl00_ctl00_UserField', this._currentUser.get_loginName(),
    this._currentUser.get_title());
    function onFaiure(sender, args) {
    alert(args.get_message() + ' ' + args.get_stackTrace());
    ExecuteOrDelayUntilScriptLoaded(GetCurrentUserAndInsertIntoUserField, "sp.js");
    </script>
    More information:
    http://alexeybbb.blogspot.com/2012/10/sharepoint-set-peoplepicker-via-js.html
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Error in SetDefaultReport with normal users

    I have to change default report for the invoices. I try to use the ReportLayoutsService.SetDefaultReport method but i only have sucess if the user that I'm using at the moment is one Super User. If the user is not SU I have the following error: Internal Error (-10) Occurred.
    My code is:
    Try
                                Dim oCmpSrv As SAPbobsCOM.CompanyService
                                Dim oReportLayoutService As SAPbobsCOM.ReportLayoutsService
                                Dim oReportParam As SAPbobsCOM.DefaultReportParams
                                oCmpSrv = oCompany.GetCompanyService
                                oReportLayoutService = oCmpSrv.GetBusinessService(SAPbobsCOM.ServiceTypes.ReportLayoutsService)
                                oReportParam = oReportLayoutService.GetDataInterface(SAPbobsCOM.ReportLayoutsServiceDataInterfaces.rlsdiDefaultReportParams)
                                oReportParam.CardCode = "-1" 'For all BPs
                                oReportParam.ReportCode = oDocCode
                                oReportParam.LayoutCode = oDocLayOut
                                oReportParam.UserID = oUserID
                                oReportLayoutService.SetDefaultReport(oReportParam)
                            Catch ex As Exception
                                MessageBox.Show(ex.Message)
                            End Try
    I already try to use:
    oReportParam.UserID = 1
    Trying make the change with user manager but i have the same error.
    How can I this work with normal Users. That no have authorization to change the layout.
    Best Regards for all.

    Olá Vitor,
    O problema é que se não conseguir instanciar auxCompany também não vou conseguir alterar o layout de impressão. Acho que a solução aqui é perceber porque é que falha quando está a instanciar auxCompany. Será por causa de outros utilizadores estarem a fazer o mesmo? Visto que estamos a falar de uma empresa com 7 filiais, o numero de documentos criados é muito elevado
    Mesmo tendo vários utilizadores a trabalhar ao mesmo tempo a instanciação de auxCompany não devia funcionar correctamente?
    Será por não estar a livertar correctamente o objecto no final da operação?
    auxCompany.Disconnect()
    auxCompany = Nothing
    Também coloquei uma validação para o caso de auxCompany já estar conectado na base de dados.
    If auxCompany.Connected = True Then
                                                Try
                                                    Dim oCmpSrv As SAPbobsCOM.CompanyService
                                                    Dim oReportLayoutService As SAPbobsCOM.ReportLayoutsService
                                                    Dim oReportParam As SAPbobsCOM.DefaultReportParams
                                                    oCmpSrv = auxCompany.GetCompanyService
                                                    oReportLayoutService = oCmpSrv.GetBusinessService(SAPbobsCOM.ServiceTypes.ReportLayoutsService)
                                                    oReportParam = oReportLayoutService.GetDataInterface(SAPbobsCOM.ReportLayoutsServiceDataInterfaces.rlsdiDefaultReportParams)
                                                    oReportParam.CardCode = "-1"
                                                    oReportParam.ReportCode = oDocCode
                                                    oReportParam.LayoutCode = oDocLayOut
                                                    oReportParam.UserID = oUserID
                                                    oReportLayoutService.SetDefaultReport(oReportParam)
                                                Catch ex As Exception
                                                    MsgBox(ex.ToString())
                                                End Try
    End If
    Será esta validação que está a causar-me problemas?
    Pelo que viste do meu código, achas que estou a abordar o assunto da forma correcta?
    Muito Obrigado,
    Cumprimentos,
    Luis Duarte

  • HT1492 Hmm, I was deleting some files last night and when I came to booting up this morning my Macbookpro (5 years old) i was greeted with a user login screen? put in my password, but all i get is the space screen and no further action...? cant get apps o

    mm, I was deleting some files last night and when I came to booting up this morning my Macbookpro (5 years old) i was greeted with a user login screen? put in my password, but all i get is the space screen and no further action...? cant get apps o my bar

    Sounds like you may have deleted something you shouldn't have. Boot to an OS X DVD or a bootable backup, and using Disk Utility, do a repair disk, and while there repair permissions. Disconnect any peripherals, and reboot. If you get the same startup behavior, do a safe boot, by holding the shift key down when booting. If that works, try a normal boot. If neither step helps, you may need to relaod your operating system.

  • Terminal server application and contextless login

    Hi,
    Using zen6.5sp2 here
    terminal server application, to a win2k3 with client 4.91sp2 (french +
    patch kit c for test)
    the credentials are passed correctly from the client to the server, and
    the "single-sign-on" works ok only if I specify the context into the client.
    I can't get the LDAP contextlogin login to work, neither the old
    LgnCLW32.dll
    If I do a local authentification, or throught mstsc as usual, it works
    it's only via the zenworks apps.
    The client 4.91sp1 or sp2 (don't remember) had a bug that it wasn't able
    to pass credentials at all, and that's not what I'm looking for...
    Any clue ?
    Marc

    I beleive this is true, but I'm talking about Novell login... What the
    SAM has todo with this ???
    I do not bother avec Windows login, I have ZEnworks that creates an
    account for me...
    Steps to replicate the problem:
    1) create user1 under context1 into edir
    2) create user2 under context2 into edir
    3) create zen dlu policies, for loging into a regular winxp, and win2003
    terminal server
    4) install novell client (configure the location profile with the
    treename, and the CONTEXT of CONTEXT1 & configure ldap contextless
    login) & zfd on the TS
    5) at this point, if anyone uses mstsc.exe to connect to the TS server,
    he should be able to login to the TS, with a DLU, and get a desktop
    6) create a TS application into ZENworks, which points to the TS, and
    start any app (notepad.exe)
    7) login into a winxp workstation, with user1, start NAl, click the app,
    it should so an "SSO" login to the TS, and start notepad without asking
    a password
    8) login will FAIL with user2, because he's under context2, and zen
    doesn't try todo contextless login
    Yeah, I can create alias, but to me, it's not elegant... and a waste of time
    Yeah, I can use IDM to create another tree, sync all my accounts into 1
    context...
    Yeah, I can live with that for the rest of my users under context2....
    Marc, just trying to help...
    craig wilson wrote:
    > All I can tell you is that it is not going to happen.
    > Contextless Login is done via the client login utilities.
    > These utilities are not involved in the pass-through authentication
    > process. It may not even be possible to do.
    >
    > Through the use of IDM or Lynx this can be completely automated.
    > ------------------------------------------------------------------
    >
    > Create a local account on a workstation and a matching account on a
    > Domain with a matching password.
    >
    > Login locally to the PC and try to access the DC.
    > It works.
    >
    > Try to access a member server to which the domain account has rights.
    > It fails and prompts you to enter your user ID. Specify the ID in
    > domain/id format and you get in.
    >
    > Basically a failure of Passthrough authentication because the "Default"
    > security container is the local SAM for both systems. One holds the ID
    > one does not.
    >
    > This is really the same basic issue Novell is having via passthrough
    > authentication.
    >
    >
    >
    >
    >
    > Marc-Andre Vallee wrote:
    >> come on..........
    >> RFE....
    >

  • Can not assign custom access level with a user login

    Hi,
    I am using Business objects XiR3. When I am loging in with a user having full control access and then I select a folder added a principal from user sercurity and when I am trying to add custom access level it gave me error
    An error occurred at the server during security batch commit: Request 0 of type 38 failed with server error : You do not have sufficient rights to make the requested security changes.
    it allow me to give access to standard access levels. also when I tried to assign custom access level with administrator user, it assigns custom access level to a principal without error.
    Can any body tell me what I am doing wrong?
    Thanks in advance,
    Rajendra

    Hi Rajendra,
    You have to make sure that the user group has the right 'Use access level for security assignment' assigned as granted on the access level you created. You can find this right under System / Access Level. That should do the trick!
    Hope this helps...
    Martijn van Foeken
    Focuzz BI Services
    http://www.focuzz.nl
    http://nl.linkedin.com/in/martijnvanfoeken
    http://twitter.com/mfoeken

  • How do I add a network printer to a terminal server for one user?

    I have a 2003 terminal server.  I also have a network printer accessible by IP.  I want one of the users on the TS to print to this printer.
    If I log in as the user, all print options are greyed (access denied).  There's no 'users' icon in control panel to give the user admin access like I might do on a workstation.  This printer is not installed on a print server so even if he did
    have access, doing so doesn't appear to be an option.  If I log in as Administrator I can add printers but it wants me to specify \\servername\printername and it's not set up that way.  It's just a network printer on an IP.  Also I'm not trying
    to get RDP to map the printer locally for the user, he needs to be able to print from the terminal server to the network printer.  Any articles I can find assume the printer is either local to the user or on a print server of some kind.
    Is this possible and how?
    Thanks!

    Hi,
    In addition to TP’s comment, you can go through beneath article for information.
    Terminal Server and Printer Redirection
    http://blogs.technet.com/b/askperf/archive/2007/08/24/terminal-server-and-printer-redirection.aspx
    Hope it helps!
    Thanks.
    Dharmesh Solanki
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Can't login with normal user via XDM

    Hi everyone,
    I have installed XFCE with XDM. The problem is, that when xdm loads, when I enter my normal user name and password the screen blinks and drops me back to xdm. When I enter root with password everything is fine (but I don't want to use root obviously).
    I have copypasted .xinitrc and .xsession from root to home/jonas/. Here are the contents of
    .xinitrc: http://pastebin.com/n2u4qfLD
    rc.conf: http://pastebin.com/2NLKEXyw
    inittab: http://pastebin.com/6Sbf76ff
    What am I missing? Thank you in advance

    weltio wrote:last advice was to downgrade gdm but it sounds very unlikely due to the fact that xdm makes similar problems
    I got the same problem with xdm, while gdm works fine. I'm still interested in seeing what's the xdm issue, though.

  • Mount a Drive with Normal User Access

    How do I do this? Even better, can I mount it automatically. I know this has something to do with /etc/fstab
    What should I append to /dev /sda2 /mnt/mac to make it mount automatically and allow the normal user access?
    It's where I store my music library.

    duke11235 wrote:How do I do this? Even better, can I mount it automatically. I know this has something to do with /etc/fstab
    What should I append to /dev /sda2 /mnt/mac to make it mount automatically and allow the normal user access?
    It's where I store my music library.
    Every question you asked is answered in the Wiki - please read it and then try and implement it yourself. If it doesn't work, then come back with a description of what you tried, what errors you got and any other material you have come across.
    This is help-vampirism.
    Closing.

  • Help with multiple user login script

    Hi, just a little background first to what i want to do...
    I have about 300 Macs in an education environment, they are bound to the AD network for authentication and OSX Server LDAP for forced prefs, the network Home accounts are stored via Apple and Promise Raids on XServes.
    We also have 4 local user accounts on all the Macs for video etc. I have some simple scripts that i would like to force to the local Users only, (empty trash, reset dock. reset desktop pics and delete items etc).
    I have done the script and saved it as a .app and it works on the Macs as a local User login option. However, when I bind the Mac back to the LDAP the local user script stops working. I have seen the option to 'Allow local scripts' to run via WGM, but have not had success here either, (I have ran the 2 EnableMCXLoginScripts on the clients).
    Now I thought I would try to run the script as a Launchdaemon option using Lingon. This works, but its active for all users, I do not want it to delete Network account users Desktops! Is there a way I can add an 'If' option at the beginning of my script. As in..'if users home account is /Network/Sharepoint' then quit.
    I cannot run it as a one script for all Mac setting as the different local users have different Desktop Pics and Docks etc
    Any ideas or other options I could try?
    Any help hugely appreciated.
    C

    V.K, thanks for that, sometimes I just don't see the obvious.
    I have tried it as a ~/Library/LaunchAgents using lingon to create the .plist. I just cannot get it to run though. I have tried it as a .sh .scpt and as a .app file stored in the /Users/Shared folder.
    All will run if I manually launch them after login though. I have made them all executable for all.
    I have also tried to run it without the Mac connected to my LDAP. I have added the relevant folders to the allow list in WGM on the lDAP anyway...
    Any ideas what I could be doing wrong?
    C

  • Dynamically configure different DNS server based on user login.

    I've got two young sons and I'm looking to reconfigure the 'Family' desktop to give the older son his own user account.
    I've only recently started with Arch on my personal netbook so the family desktop is still running Ubuntu.  That will likely change next clean install though.
    I'd like to set the DNS to OpenDNS 'family shield' for his usage but allow full access via a different DNS server such as google DNS (for example) for parental use without filtering.
    I'd like this to switch auto magically based on the user login credentials if possible.
    I understand the limitations of DNS filtering but my oldest son has never even heard of DNS much less being able to figure out how to circumvent it yet.  I'll deal with that in several years when it becomes an issue...
    Can anyone point me in the right direction?

    bergersau wrote:Thanks,
    It looks like I might have to set up a squid proxy with Dan's Guardian.  I was hoping for a simpler solution though.
    Dan's Guardian is going to be a whole lot simpler than hacking the system resolver to use different servers for different users.
    You MIGHT be able to hack something with iptables, the NAT table and a DNAT in conjunction with the 'owner' module... Something like:
    Set your "unrestricted" DNS server in /etc/resolv.conf and a rule like below...
    I'll assume you set the Google servers; 8.8.8.8 and 8.8.4.4 and your son's usernames are 'brad' and 'tony'
    iptables -t nat -A POSTROUTING -d 8.8.8.8 -m owner --uid-owner brad -j dnat --to 208.67.222.222
    iptables -t nat -A POSTROUTING -d 8.8.4.4 -m owner --uid-owner brad -j dnat --to 208.67.220.220
    iptables -t nat -A POSTROUTING -d 8.8.8.8 -m owner --uid-owner tony -j dnat --to 208.67.222.222
    iptables -t nat -A POSTROUTING -d 8.8.4.4 -m owner --uid-owner tony -j dnat --to 208.67.220.220
    Untested and I don't guarantee that will work. You could tidy it up and bit using subchains etc, but I'll leave that as an exercise for the reader.... And I'd still recommend a filtering proxy over the above....

  • 2008 R2 Terminal Server large Local User Profile Folder; C:\ drive size fluctuation

    Hey Guys,
    Have an interesting issue I'm currently working with and starting to scratch my head.  I inherited this server so many things I'm still discovering. 
    This is TS 2008 R2 SP1, with very basic setup; Microsoft, Firefox, IE, and Adobe. I currently have many users, but only these two user profiles that have large folders. (all the space is taking out by C:\Users\%USER%\AppData\Local\Microsoft). Each folder orbiting
    around 23.6GB taking 89% of the C:\ drive. Once I discovered it, I applied folder redirection policy to move all the content of the user folder's to the large drive; P:\TSProfiles\ottc01
    However, the actual C:\Users\%USER%\AppData\Local\Microsoft folder still there and looks like it cannot be moved. It's almost like every instance of windows OS and Microsoft Office duplicated and resides on each user's local profile. Plus, the C:\ drive
    space fluctuates and goes up and down, every time user logs on and off.
    So, I'm curious is to how to correct this issue and why only these two users have such a large profiles? I can provide more info if needed, just let me know.
    Thanks everyone for their time.

    Hi,
    On current situation, please refer to following articles and check if can help you.
    User Profiles on Windows Server 2008
    R2 Remote Desktop Services
    Manage User Profiles for Remote Desktop Services
    In addition, this issue seems to be more related to terminal service. I also suggest that you would post this question in
    Remote Desktop Services (Terminal Services) Forum. I believe we will get a better assistance there.
    If any update, please feel free to let me know.
    Hope this helps.
    Best regards,
    Justin Gu
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • SGD 4.3 authenticate with AD(Users login n get different set of application

    Hi SGD Forum users,
    First of all, happy new year and happy holiday to all of you from new SGD user :-).
    We are planing to Demo SGD 4.3 to one of our customer by early next week.
    So, what the customer would like to see with the demo:
    1) From SunRay client, user1 launch Firefox browser and type the sgd web page.
    - Enter username and password ( Username and password must authenticate with AD ).
    - After successfully authenticate, user1 will get his webtop page.
    - In the webtop page, user1 only have two(2) applications to launch. First application is MS Office Word and Second application is Full Virtual XP desktop( 192.168.5.205 ).
    2) From SunRay client, user2 launch Firefox browser and type the sgd web page.
    - Enter username and password ( Username and password must authenticate with AD ).
    - After successfully authenticate, user2 will get his webtop page.
    - In the webtop page, user2 only have two(2) applications to launch. First application is MS Office Excel and Second application is Full Virtual XP desktop( 192.168.5.206 ).
    3) From SunRay client, user "manager" launch Firefox browser and type the sgd web page.
    - Enter username and password ( Username and password must authenticate with AD ).
    - After successfully authenticate, user "manager" will get his webtop page.
    - In the webtop page, user "manager" only have four(4) applications to launch. First application is MS Office Word, Second application is MS Office Excel, Third application is MS Office Powerpoint and Fourth application is Full Virtual XP desktop( 192.168.5.207 ).
    Note: The above mentioned users( user1, user2 and manager ) launch a different MS Office applications and different Virtual XP desktop servers.
    Here are my SGD 4.3 demo setup:
    - Install Solaris 10 06/06 OS for Sparc.
    - Install latest patches.
    - Create a local zone.
    - Install SRSS 3.1 and patches in Global zone.
    - Install SGD 4.3 in the local zone.
    - My colleague install 2x MS Server 2003( AD and DNS server )
    - My coleague install ESX( VM Server ) and created 3x Virtual XP Desktop( 192.168.5.205, 192.168.5.206 & 192.168.5.207 ).
    In my SGD, Array Manager, i had successfully set "Enabling the Active Directory login authority" as mentioned in the SGD Administrator Guide. I also login successfully to SGD server using user1, user2 and manager( Created in AD server ). So, my SGD server successfully communicated with AD server.
    When i test login user1 or user2 or manager to SGD server, they get same webtop with same applications. If i am not wrong, these behaviour is due to LDAP Profile under "o=Tarantella System Objects". If i put any application in LDAP Profile's Links tap, all the user whose authenticated with AD will be able to launch it.
    The customer requirement is, all the users authenticate with AD and the users should launch different applications and different Virtual XP Desktop as i mentioned earlier.
    Is it possible to perform the SGD demo as customer requirement ? If yes, can you guide and help me on how-to create different profile for each AD authenticated users.
    Thanks in advance.
    # Yours Sincerely,
    # Mohamed Ali Bin Abdullah.

    Hi Wai,
    Sorry not including full details of the person object in my previous posting.
    Here are the details of person object:
    General
    - Name: user1
    - Description:
    - Surname: esuria
    - Username: user1
    - Email: [email protected]
    - Locale: Automatic
    - Keyboard Map: Use XPE setting
    - Windows NT Domain: BIA
    - Bandwidth: None
    - Webtop Theme: Standard
    - Inherit parent's webtop content: NO
    - Shared between users(quest): NO
    - May log in to Secure Global Desktop: YES
    - Profile Editing: Use Parent setting
    - Clipboard Access: Use Parent Setting
    - Serial Port Mapping: Use Parent Setting
    Links
    o=BIA/cn=MS XP Desktop 192.168..5.205
    Thats the setting of user1 person object which i had created in my SGD but when user1 authenticated with AD, the user1 still sees LDAP Profile applications.
    What else, do i need to set in SGD and AD server side ?
    Thanks in advance.

  • Terminal Server : Prevent some users printer redirection

    I have three  groups of users, who access RDS Farm.
    Group 1 = No printers & and no printers redirection
    Group 2 = Only default printer redirection – Allow  
    Group 3 = All redirected printers – Allow  
    Is it possible, to tis implemented on  same RDS Server “farm”.

    Hi,
    Thank you for posting in Windows Server Forum.
    As per my research, we can get your requirement with help of group policy setting for particular group. Please check following article.
    Group 1 = No printers & and no printers redirection 
    Do not allow client printer redirection:   Enable
    Group 2 = only default printer redirection – Allow  
    Redirect only the default client printer:   Enable
    Group 3 = All redirected printers – Allow  
    Redirect only the default client printer:   Disable
    You can find above policy under following path.
    Computer Configuration\Policies\Administrative Templates\Windows Components\Remote Desktop Services\Remote Desktop Session Host\Printer Redirection
    More information.
    http://technet.microsoft.com/en-us/library/cc731963(v=ws.10).aspx
    Hope it helps!
    Thanks.
    Dharmesh Solanki
    TechNet Community Support

  • Create Members Only page with unique user login

    I would like to create a Members Only page on our site which allows our dealers to create their own user name / password. I would need to be able to manage the database of login information in order to remove users as necessary.  Any advice on a widget or program that would work with Muse to accomplish this?

    You can also refer to the below links:-
    Re: Can I create a login/password protection in Muse for a HTML5 page or two?
         Password Protect Pages Widget for Adobe Muse
    Regards,
    Neha

Maybe you are looking for

  • Return Sony without the Box?

    Hello, I bought a Sony hdr-as100v. It works as it should. Yet truthfully, I want to exchange it for the Go Pro Hero3 Black. Can I return this Sony cam without the original box? I have all the accessories, documentation, original recipt, with me. Yet

  • I cannot copy files from Pages or Adobe Reader to or from iTunes 11

    How do I copy files from iTunes to my iPad or vice versa?

  • Change column to update on Tabular Form

    Hello I created a tabular form on a table and when creating it, I made one of the columns not updateable. Is there a way I can change the properties of this column to updateable without having to delete the tabular form and start again. Regards Craig

  • Still no support for Pentax K20D RAW???

    I could understand if the camera was just announced, or just came out last week, or even last month - but this camera has been on the market for 3 months now! C'mon Apple! Any word about when we might see support for RAW files from Pentax/Samsung CMO

  • Find text in webpage and email notification applescript/automator

    Hey guys, I'm trying to make (what I think is) a fairly complicated automator/applescript action.  Basically, I'm trying to buy a certain product and it is only available on the webpage at certain times. So I want to create a function that will const