How to make bookmarks appear in all user accounts w/out importing and exporting everytime.

Hello, all. I'm imaging a couple of laptops to be sent out. I want the bookmarks on the admin user account to be applied to the network domain user accounts or roaming profile is you will. Is there a way to this without have to import/export?

I am trying to do the same thing. I also cant get it to work. I am
thinking it may have something to do with the concept of ScopedResponse, but
I am not sure. There is very little documentation and more importantly
examples of how to make sense of the getOuterResponse() method. Dev2Dev and
Google are of no help.
Anyone care to explain this to us?
Michael.
"Zhenhao Qi" <[email protected]> wrote in message
news:3fd4f634$[email protected]..
>
Hi All,
I have a jsp page to display a table. I want to add a "excel download"button
in this page, once user click this button, it will invoke the microsoftexcel
and all table content will appear in the excel spreadsheet.
I tried to set the content: <%@ pagecontentType="application/vnd.ms-excel"%>
the rest code as following. However, it won't work for me. Does anyone hasany
experience in doing this?
<%@ page contentType="application/vnd.ms-excel"%>
<%@ taglib uri="netui-tags-databinding.tld" prefix="netui-data"%>
<%@ taglib uri="netui-tags-html.tld" prefix="netui"%>
<%@ taglib uri="netui-tags-template.tld" prefix="netui-template"%>
<netui:html>
<head>
<title>
Web Application Page
</title>
</head>
<body>
<table border="1">
<tr style="background-color:#3366ff;font-family:arial;">
<td>Structure</td>
<td>Compound</td>
<% // Get the Items from the request stream
Vector mr_names = (Vector) request.getAttribute("method_result_names");
for (int f=0;f<mr_names.size();f++) {
out.println("<td>" + mr_names.get(f) + "</td> ");
Vector mrs = (Vector)request.getAttribute("method_results");
for (int g=0; g<mrs.size(); g++)
out.println("</tr><tr>");
Vector row1 = (Vector)mrs.get(g);
for (int f=0;f<mr_names.size()+1;f++) {
String s = (String)row1.get(f);
if (f==0) {
%>
<td><embed src="structure.jsp?Sample_code=<%=s%>"width="120" height="100"></embed></td>
>
<%
out.println("<td>" + s + "</td> ");
out.println("</tr>");
%>
</table>
</body>
</netui:html>
Thanks!
Zhenhao

Similar Messages

  • How do I delete one of the user accounts on my computer and not lose the data in that account?

    How do I delete one of the user accounts on my computer and not lose the data in that account?

    I actually have the opposite of this problem. haha.
    https://discussions.apple.com/thread/4484354

  • How to make programs available to all users

    How to make programs available to all users

    By default, all Applications are installed in /Applications. Those are available to all users. If you choose to install in your home Applications folder, they are only available to that user.
    You can also control app usage with Parental Controls. If that is on, that my be why some cannot use certain apps.

  • How to make feedback visible to all user having read permission

    hi,
        for a document , a user is giving a feedback. my need is how to make that feedback visible to all user. all user are having read permission only.
      help will be appriciated
    Regards,
    Shanthakumar.

    Hi,
    Normally we use feedback as an explanation by an approver to the previous approver about his action on the doc( reject/approve).
    I think you want ur users to view the doc and then give suggestions to make it better and these comments should be approved and then made visible.
    I replied on one such thread earlier too.
    Please have a look at this [thread|https://www.sdn.sap.com/irj/sdn/thread?threadID=816692]
    I hope it helps.
    Regards,
    Sumit

  • How to make dock appear in all monitors, and keep new windows to same monit

    I've got an unusual setup: two screens at my desk, and another one in front of a recliner nearby so that it is not physically adjacent to the other two. This means that when the cursor moves off the side of two of the monitors and goes to the third one, I can't see it. I don't want to mirror all the displays because half the time I use the two adjacent ones from the desk, and sometimes I just want to use the one separate one. Can someone tell me if it's possible to
    1) make the same dock appear in all monitors? I want access to the dock no matter which monitor I'm looking at. Is there a utility or hack that will give me a dock in each screen?
    2) any way to have apps open and create new windows in whatever monitor I'm currently working? it's very annoying that sometimes I run a app and it throws up a window in the monitor I'm not looking at. Any way to keep it to the set of two or to the 3rd one, depending on which I'm using at the time?
    thank you!
    Mike

    Hi Mike, Might have a look at the bottom of this page for Dock-It 2.6.1 for Mac OS X 10.5.x and earlier...
    http://www.macupdate.com/info.php/id/8288/dock-it
    As far as the other problems, I'd try Mirroring #1 & #3.
    Move Off-Screen Windows to the Main Screen...
    http://zach.in.tu-clausthal.de/software/
    http://www.macosxhints.com/article.php?story=2007102012424539
    http://www.jonathanlaliberte.com/2007/10/19/move-all-windows-to-your-main-screen /

  • How to make object appear in all slides?

    I'd like to place a logo in the top right of a slide and have it appear in all slides.  If I adjust the logo in one slide, it will adjust the same in all slides.
    Any ideas how to accomplish that?

    Place the logo on the master slide being used in the presentation:   View > Show Masters Sides

  • How to add calendar enries to all users in organization using powershell and EWS.

    I am one of the exchange admins for our organization.  Every year, we publish academic calendar data to all faculty and staff calendars.  We recently updated and migrated from Exchange 2003 to Exchange 2010 which, of course, desupported MAPI and
    ADO.  The processes we previously used had to be re-written using Exchange Web Services API (EWS).  Because I find that powershell is easy to work with, I wanted to integrate the calendar dispersal using powershell.
    Having not found much help online using the EWS .NET library in powershell for this purpose, I decided to share my code:
    # Bulk load calendar entries script
    # Description:
    # Script used to deploy Academic Calendar entries to all Exchange account calendars
    # Prerequisites:
    # Service account must have ApplicationImpersonation ManagementRoleAddisgnment
    # New-ManagementRoleAssignment -Name:impersonationRole -Role:ApplicationImpersonation -User:<srv_account>
    # Usage:
    # .\academicCalendar.ps1 calEntries.csv
    # Where calEntries.csv = list of calendar entries to add
    Param ([string]$calInputFile = $(throw "Please provide calendar input file parameter..."))
    $startTime = Get-Date
    $strFileName = "<path to log file>"
    if(Test-Path $strFileName)
    $logOutFile = Get-Item -path $strFileName
    else
    $logOutFile = New-Item -type file $strFileName
    # Load EWS Managed API library
    Import-Module -Name "C:\Program Files\Microsoft\Exchange\Web Services\1.0\Microsoft.Exchange.WebServices.dll"
    # Load all Mailboxes
    $exchangeUsers = Get-Mailbox -ResultSize Unlimited | Select PrimarySmtpAddress
    # Load all calendar Entries
    # Input file is in the following format
    # StartDate,EndDate,Subject
    # 8/29/2011,8/30/2011,First Day of Fall Classes
    $calEntries = Import-Csv $calInputFile
    # Setup the service for connection
    $service = new-object Microsoft.Exchange.WebServices.Data.ExchangeService([Microsoft.Exchange.WebServices.Data.ExchangeVersion]::Exchange2010)
    $service.Url = new-object System.Uri("https://<CAS_server_URL>/ews/exchange.asmx")
    $service.Credentials = new-object Microsoft.Exchange.WebServices.Data.WebCredentials("<service_account>","<password>","<domain>")
    $totalCount = $exchangeUsers.Count
    $currentCount = 0
    Write-Output "Exchange Version: $service.RequestedServerVersion"
    Write-Output "Mailbox Count: $totalCount"
    # Add message to log file
    $timeStamp = Get-Date -Format "MM/dd/yyyy hh:mm:ss"
    $message = "$timeStamp -- Begin Calendar Deployment `n"
    $message += "Total Exchange Accounts: $totalCount"
    Add-Content $logOutFile $message
    # Perform for each Mailbox
    $error.clear()
    foreach($mailbox in $exchangeUsers)
    $currentCount++
    if($mailbox.PrimarySmtpAddress -ne "")
    # Output update to screen
    $percentComplete = $currentCount/$totalCount
    Write-Output $mailbox.PrimarySmtpAddress
    "{0:P0}" -f $percentComplete
    # Setup mailbox parameters for impersonation
    $MailboxName = $mailbox.PrimarySmtpAddress
    $iUserID = new-object Microsoft.Exchange.WebServices.Data.ImpersonatedUserId([Microsoft.Exchange.WebServices.Data.ConnectingIdType]::SmtpAddress,$MailboxName)
    $service.ImpersonatedUserId = $iUserID
    # Indicate which folder to work with
    $folderid = new-object Microsoft.Exchange.WebServices.Data.FolderId([Microsoft.Exchange.WebServices.Data.WellKnownFolderName]::Calendar)
    $CalendarFolder = [Microsoft.Exchange.WebServices.Data.CalendarFolder]::Bind($service,$folderid)
    # For each entry in the input file
    $error.clear()
    foreach($entry in $calEntries)
    # First check to make sure the entry is not already in the calendar
    # use a calendarview object to pull the entries for the given date and make sure an entry with the same subject line doesnt already exist
    $cvCalendarview = new-object Microsoft.Exchange.WebServices.Data.CalendarView([System.DateTime]($entry.StartDate),[System.DateTime]($entry.EndDate))
    $cvCalendarview.PropertySet = new-object Microsoft.Exchange.WebServices.Data.PropertySet([Microsoft.Exchange.WebServices.Data.BasePropertySet]::FirstClassProperties)
    $frCalendarResult = $CalendarFolder.FindAppointments($cvCalendarview)
    $entryFound = $False
    foreach ($appointment in $frCalendarResult.Items)
    if($appointment.Subject -eq $entry.Subject)
    $entryFound = $True
    # If entry was found, then skip this entry
    if($entryFound)
    $entryFound = $False
    else # Create the appointment object and save it to the users calendar
    $appt = New-Object Microsoft.Exchange.WebServices.Data.Appointment($service)
    $appt.Subject = $entry.Subject
    $appt.Start = [System.DateTime]($entry.StartDate)
    $appt.End = [System.DateTime]($entry.EndDate) #For AllDayEvent, end date must be after start date
    $appt.IsAllDayEvent = $True #Set event as "All Day Event"
    $appt.LegacyFreeBusyStatus = "Free" #Make sure free/busy info shows user as "free" rather than "busy"
    $appt.IsReminderSet = $False #Make sure reminder is not set to remind the user of the event
    $appt.Save([Microsoft.Exchange.WebServices.Data.SendInvitationsMode]::SendToNone)
    if($error)
    $timeStamp = Get-Date -Format "MM/dd/yyyy hh:mm:ss"
    $message = $timeStamp + "...Exception Occurred while processing Save for: `n"
    $message += " Account: " + $MailboxName + "`n"
    $message += " Subject: " + $entry.Subject + "`n"
    $message += " Exception: " + $error[0].Exception + "`n"
    Add-Content $logOutFile $message
    $error.clear()
    if($error)
    $error.clear()
    else
    $message = "" + $MailboxName + "`t Success! `n"
    Add-Content $logOutFile $message
    Write-Output $currentCount
    $endTime = Get-Date
    $duration = New-TimeSpan $startTime $endTime
    $totalMin = $duration.TotalMinutes
    # Build and send email notification upon completion
    $body = "The Calendar deployment has completed. `n `n "
    $body += "Start Timestamp: $startTime `n "
    $body += "End Timestamp: $endTime `n "
    $body += "Duration: $totalMin min `n "
    $body += "Exchange accounts affected: $currentCount `n"
    $smtpServer = "<mysmtpserver>"
    $smtp = new-object Net.Mail.SmtpClient($smtpServer)
    $msg = new-object Net.Mail.MailMessage
    $msg.From = "<from_email_address>"
    $msg.To.Add("<to_email_address>")
    $msg.Subject = "Calendar Deployment"
    $msg.Body = $body
    $smtp.Send($msg)
    # Add closing message to log file
    $timeStamp = Get-Date -Format "MM/dd/yyyy hh:mm:ss"
    $message = "Accounts affected: $currentCount"
    Add-Content $logOutFile $message
    $message = "$timeStamp -- Completed in $totalMin min."
    Add-Content $logOutFile $message
    Please let me know if you think I can make any performance modifications.
    Daniel
    --Edit-- I have updated the script for Exchange 2010 SP1, also added logging, error checking and email notifications.  This new script also checks first to make sure the appointment doesn't already exist before adding it.  (To prevent multiple
    entries of the same event... Note: This check, although necessary in my opinion, is very time consuming.)

    Hi Daniel
    I am trying to add addition propertires like TV, Copier etc. to Room Mailbox in Exchange 2010 using following commands:-
    [PS] C:\Windows\system32>$ResourceConfiguration = Get-ResourceConfig
    [PS] C:\Windows\system32>$ResourceConfiguration.ResourcePropertySchema+=("Room/Whiteboard")
    Upper two commands run fine but following command gives error:-
    [PS] C:\Windows\system32>Set-ResourceConfig -ResourcePropertySchema $ResourceConfiguration.ResourcePropertySchema
    The term 'Set-ResourceConfig' is not recognized as the name of a cmdlet, function, script file, or operable program. Ch
    eck the spelling of the name, or if a path was included, verify that the path is correct and try again.
    At line:1 char:19
    + Set-ResourceConfig <<<<  -ResourcePropertySchema $ResourceConfiguration.ResourcePropertySchema
        + CategoryInfo          : ObjectNotFound: (Set-ResourceConfig:String) [], CommandNotFoundException
        + FullyQualifiedErrorId : CommandNotFoundException
    I also tried with space after set but still getting error:
    [PS] C:\Windows\system32>Set -ResourceConfig -ResourcePropertySchema $ResourceConfiguration.ResourcePropertySchema
    Set-Variable : A parameter cannot be found that matches parameter name 'ResourceConfig'.
    At line:1 char:20
    + Set -ResourceConfig <<<<  -ResourcePropertySchema $ResourceConfiguration.ResourcePropertySchema
        + CategoryInfo          : InvalidArgument: (:) [Set-Variable], ParameterBindingException
        + FullyQualifiedErrorId : NamedParameterNotFound,Microsoft.PowerShell.Commands.SetVariableCommand
    Pl advise the solution at [email protected] . I got this help from
    http://zbutler.wordpress.com/2010/03/17/adding-additional-properties-to-resource-mailboxes-exchange-2010/

  • What are all the objects can be imported  and exported...

    Hi all,
    what are all the objects can be imported ..
    and what are all objects exported....in XI..
    and what is context objects and logical routing..
    Cheers,
    Raghavesh

    Hi,
    Your question 1 is not very clear. Are you taking about Export and Import under TOOLS --> EXPORT / IMPORT? If yes, all objects created in the IR and ID can be exported and improted. They are used for moving your objects from one environement to another .TPZ files.
    Individual Objects that can be improted in the IR  are those that come under
    1. External Definitions --> XSD, WSDL, DTD which acts
    as the message types.
    2. Idocs and RFC's.
    3. Imported Archives -->External Mapping progrars ( Java and XSLT ) , external .jar files etc.
    Context objects is nothing but to put in simple words an XPATH. At times XPATH can become too long and complex and to avoid typing them at different places, you create CONTEXT Objects for these path and then use them.
    Logical Routing refers to Conditional Receievr / Interface Determination where on the basis on some conditoon your target Recievr / Interface is determined.
    Regards,
    Bhavesh

  • How to make Stickies appear across all desktops on rMBP

    Hello,
    I have a rMBP running Yosemite.  I utilize three desktops and want to know if the stickie notes I create can be applied to all desktops. I want to create on one desktop and if I swipe to another desktop I want it to appear there as well without having to create duplicate stickies.
    thanks

    Hi Mike, Might have a look at the bottom of this page for Dock-It 2.6.1 for Mac OS X 10.5.x and earlier...
    http://www.macupdate.com/info.php/id/8288/dock-it
    As far as the other problems, I'd try Mirroring #1 & #3.
    Move Off-Screen Windows to the Main Screen...
    http://zach.in.tu-clausthal.de/software/
    http://www.macosxhints.com/article.php?story=2007102012424539
    http://www.jonathanlaliberte.com/2007/10/19/move-all-windows-to-your-main-screen /

  • How to make extension available for all users in a multi user environment

    Hi,
    In a multi-user environment, a user install a dreamweaver extension,but just the user who install the extension can use it.
    Is there a way that administrator install the extension and make this extension available for other users in multi-user environment(e.g. the Windows 7)
    Thanks

    In a multi-user environment, a user install a dreamweaver extension,but just the user who install the extension can use it.
    Is there a way that administrator install the extension and make this extension available for other users in multi-user environment(e.g. the Windows 7)
    Dreamweaver had this capability many releases ago, but it has been dropped, so it's no longer available.
    Regards,
    Randy Edmunds
    Dreamweaver Development
    Adobe Systems, Inc.

  • How to make Windows 7 local admin user account transparent

    Previously with Windows XP, I would use the autolog.exe to have the local windows account login transparently while the user would login via their novell credentials. My company would like to roll out Windows 7 now, but unfortuantely, we are unable to make the windows local account log in transparent. I do not want my users to know this password - also it would really confuse them as they are not tech savvy to understand it.
    Is there a way that I can make this happen? If you need more information, please ask and I will provide. Not sure what other info may be required here.
    I am using Novell Client 2 SP2 - i find the SP3 to be problematic, but if SP3 would resolve this, I am open to the idea.

    Kristaranglack,
    > Previously with Windows XP, I would use the autolog.exe to have the
    > local windows account login transparently while the user would login via
    > their novell credentials. My company would like to roll out Windows 7
    > now, but unfortuantely, we are unable to make the windows local account
    > log in transparent. I do not want my users to know this password - also
    > it would really confuse them as they are not tech savvy to understand
    > it.
    The easy solution is autoadminlogon:
    https://wwwstage.provo.novell.com/su...php?id=7013307
    But a far more elegant solution would be to use ZENWorks
    Anders Gustafsson (NKP)
    The Aaland Islands (N60 E20)
    Have an idea for a product enhancement? Please visit:
    http://www.novell.com/rms

  • Installing office on all user accounts

    I have just installed Microsoft Office on my User Account (admin) but I cannot see it on other user accounts on the same Mac (standard profile)
    How do I install Office on all User Accounts?
    Thanks

    The /Applications folder at the root level of the disk is available to all the users, and is where applications are normally installed (admin acess is needed to install).
    There can also be an ~/Applications folder in the user's home directory (it needs to be created). Applications installed there will only be available to that user (no admin access is needed to install).

  • Under bookmarks the Organize bookmark option does not appear, new computer Firefox 4.0, and Windows 7, how to make it appear, thanks

    Under bookmarks the Organize bookmark option does not appear, new computer Firefox 4.0, and Windows 7, how to make it appear, thanks

    "Organize Bookmarks" has been renamed to "Show All Bookmarks" in the bookmarks menu.

  • How do I make automator services available to all user accounts?

    I wrote an automator script and made it a service (the standard one that shows all hidden files, or un-shows all hidden files) and I'd like to make it a system-wide service so all user accounts on my Mac can use it.
    I'd prefer to not log in to each account to set it up as I feel that would waste space (I know, not much is needed) but more importantly if I have to change the script I only have to do it in one place.
    How do I do this?
    I have other scripts I'd like to make available to all too.
    I'm currently running OS X 10.9.5 on a 2008 (not Pro) MacBook core 2 duo.

    Thank you, Frank. I'm aware of the packages but didn't realize how it all applied.
    I didn't post if it worked for other user accounts because at the time, I didn't know. It was late when I got it working for my primary account and decided to check it later, which I did this morning, and the services did show up for the other accounts. Yea!!
    As far as the workflows being "corrupt", I still don't know why, either.
    It was odd that when I did Get Info for that file the Preview section actually showed (but of course, very tiny) the Automator script, so clicking (double-clicking? D-C worked this morning) it opened with no errors in Automator. Permissions are still 777 (unix), but I'll change them back to 666.
    Hey! 666 removed them from Services! And when I try to open the workflow in Automator it tells me the file is corrupt. Go figure.
    The answer to that might be that the /Library/Services directory already existed (because of the MacExplorer app I installed) so it held LaunchMacExplorer.workflow. The permissions on that file are drwxr-xr-x@ 3 padr  staff  102 Jan 27  2013 LaunchMacExplorer.workflow .
    I always wondered why write was needed for a workflow. Read or execute (unix) should be good enough.
    I changed some of the files to 751 to match the MacExplorer workflow and those not only changed the coloring (ls -al) in terminal but they also now show up in Services. Yea!

  • How do I make firefox available to all users in Windows 7?

    I've installed Firefox on a Windows 7 computer. It is only available for the user who was logged in at the time. Is there a way to make it available to all users on that computer, or do I have to run the installer under each login?

    ''ricmcdav [[#question-1045158|said]]''
    <blockquote>
    I have already installed firefox on about 15 pc's. Just realized it is user specific. Any way change it to all users or do I have to reinstall using "run as admin".
    </blockquote>
    ''forgottengods [[#answer-686397|said]]''
    <blockquote>
    I believe you just use Firefox sync, to have the profiles mimic each other. Here is a link (https://support.mozilla.org/en-US/kb/how-do-i-set-up-firefox-sync).
    </blockquote>
    Thanks but The link returns a page not found,

Maybe you are looking for

  • How to print the content of a textarea in java?

    Hello, i'm currently developping a HTML Editor in java but i've got a problem with printing job... Does anyone know a simple code to print the content of a textarea by clicking on a button? for instance: JTextarea textarea = new JTextArea(); JButton

  • Encore transcoded audio into mono instead of stereo!!

    OK here is my workflow: Shot 1080p video on Sony XDCAM PMW-EX1 with stereo audio track. Imported footage using Sony XDCAM Transfer (makes .mov files). If you open the .mov files in QT Player they show as having Track 1 - Video, Track 2 - Audio (left)

  • Mail 4.3 (OSX 10.6.4) not working properly with Exchange 2007

    I'm trying to configure my mail client to access a corporate Exchange 2007 server. When I put in all the correct information, I get an immediate response that says the Exchange server is not responding on port 443. When I try a terminal session and t

  • Functional Octo-Mac today! (2 quad cores)

    The "Octo-Mac" is even closer! http://www.anandtech.com/mac/showdoc.aspx?i=2832&p=6

  • FusionOrderDemo_R1PS3 -- Schema build failed

    Hi I am trying to build the schema Fusion Order Demo and am getting this error. If any faced this issue and had a resolution please help.. Thanks in advance!! # Master Ant properties file for Fusion Order Demo # All build files refer to this master l