Export without security

Is it possible to export an application or template without taking along security? The appexp.csh appears to so that you can accomplish this by not setting -security.
I ran the following line
./appexp.csh -e TempExp -s portal30 -p **** -c cmstst -d temp
exp.dmp -t DIAPUB_TEMPLATE,DIA_RPT_TEMPLATE
I received the following output - why did it export security? Will it import that security, which I don't want? I can't bring in a bunch of users from the test system into my production environment.
Begining Portal Application Export
...portal_schema: portal30
...portal_password: *************
...export_id: 9B73D308E3142F36E034080020CF274C
...export_name: TempExp
...template_name: DIA_PUB_TEMPLATE,DIA_RPT_TEMPLATE
...dump_file_name: temp_exp.dmp
...connect_string: cmstst
Export application to Transport Tables
Extracting metadata of TEMPLATE PUBLIC.DIA_PUB_TEMPLATE
Extracting metadata of TEMPLATE PUBLIC.DIA_RPT_TEMPLATE
Begin extracting security data of Portal
...Extracting Users...
...30 rows extracted
...Extracting Groups...
...20 rows extracted
Done
etc. . ...

This is not exporting the security. Security export is done only when -security option is given. The message
"Begin extracting security data of Portal " is only extracting the users and groups info and privileges associated with the
application.
Thanks,
Sharmila

Similar Messages

  • How to Export local security setting all filed name & value against filed.

    HI all,
    I am trying to export local security setting from local policy using bellow scrip. but it is showing only these are configured. I need expert help which allowed me to export all filed with value where it is configure or not. Please give me.
    $output=@()
    $temp = "c:\"
    $file = "$temp\privs.txt"
    [string] $readableNames
    $process = [diagnostics.process]::Start("secedit.exe", "/export /cfg $file /areas USER_RIGHTS")
    $process.WaitForExit()
    $in = get-content $file
    foreach ($line in $in) {
    if ($line.StartsWith("Se")) {
    $privilege = $line.substring(0,$line.IndexOf("=") - 1)
    switch ($privilege){
    "SeCreateTokenPrivilege " {$privilege = "Create a token object"}
    "SeAssignPrimaryTokenPrivilege" {$privilege = "Replace a process-level token"}
    "SeLockMemoryPrivilege" {$privilege = "Lock pages in memory"}
    "SeIncreaseQuotaPrivilege" {$privilege = "Adjust memory quotas for a process"}
    "SeUnsolicitedInputPrivilege" {$privilege = "Load and unload device drivers"}
    "SeMachineAccountPrivilege" {$privilege = "Add workstations to domain"}
    "SeTcbPrivilege" {$privilege = "Act as part of the operating system"}
    "SeSecurityPrivilege" {$privilege = "Manage auditing and the security log"}
    "SeTakeOwnershipPrivilege" {$privilege = "Take ownership of files or other objects"}
    "SeLoadDriverPrivilege" {$privilege = "Load and unload device drivers"}
    "SeSystemProfilePrivilege" {$privilege = "Profile system performance"}
    "SeSystemtimePrivilege" {$privilege = "Change the system time"}
    "SeProfileSingleProcessPrivilege" {$privilege = "Profile single process"}
    "SeCreatePagefilePrivilege" {$privilege = "Create a pagefile"}
    "SeCreatePermanentPrivilege" {$privilege = "Create permanent shared objects"}
    "SeBackupPrivilege" {$privilege = "Back up files and directories"}
    "SeRestorePrivilege" {$privilege = "Restore files and directories"}
    "SeShutdownPrivilege" {$privilege = "Shut down the system"}
    "SeDebugPrivilege" {$privilege = "Debug programs"}
    "SeAuditPrivilege" {$privilege = "Generate security audit"}
    "SeSystemEnvironmentPrivilege" {$privilege = "Modify firmware environment values"}
    "SeChangeNotifyPrivilege" {$privilege = "Bypass traverse checking"}
    "SeRemoteShutdownPrivilege" {$privilege = "Force shutdown from a remote system"}
    "SeUndockPrivilege" {$privilege = "Remove computer from docking station"}
    "SeSyncAgentPrivilege" {$privilege = "Synchronize directory service data"}
    "SeEnableDelegationPrivilege" {$privilege = "Enable computer and user accounts to be trusted for delegation"}
    "SeManageVolumePrivilege" {$privilege = "Manage the files on a volume"}
    "SeImpersonatePrivilege" {$privilege = "Impersonate a client after authentication"}
    "SeCreateGlobalPrivilege" {$privilege = "Create global objects"}
    "SeTrustedCredManAccessPrivilege" {$privilege = "Access Credential Manager as a trusted caller"}
    "SeRelabelPrivilege" {$privilege = "Modify an object label"}
    "SeIncreaseWorkingSetPrivilege" {$privilege = "Increase a process working set"}
    "SeTimeZonePrivilege" {$privilege = "Change the time zone"}
    "SeCreateSymbolicLinkPrivilege" {$privilege = "Create symbolic links"}
    "SeDenyInteractiveLogonRight" {$privilege = "Deny local logon"}
    "SeRemoteInteractiveLogonRight" {$privilege = "Allow logon through Terminal Services"}
    "SeServiceLogonRight" {$privilege = "Logon as a service"}
    "SeIncreaseBasePriorityPrivilege" {$privilege = "Increase scheduling priority"}
    "SeBatchLogonRight" {$privilege = "Log on as a batch job"}
    "SeInteractiveLogonRight" {$privilege = "Log on locally"}
    "SeDenyNetworkLogonRight" {$privilege = "Deny Access to this computer from the network"}
    "SeNetworkLogonRight" {$privilege = "Access this Computer from the Network"}
      $sids = $line.substring($line.IndexOf("=") + 1,$line.Length - ($line.IndexOf("=") + 1))
      $sids =  $sids.Trim() -split ","
      $readableNames = ""
      foreach ($str in $sids){
        $str = $str.substring(1)
        $sid = new-object System.Security.Principal.SecurityIdentifier($str)
        $readableName = $sid.Translate([System.Security.Principal.NTAccount])
        $readableNames = $readableNames + $readableName.Value + ", "
    $output += New-Object PSObject -Property @{            
            privilege       = $privilege               
            readableNames   = $readableNames.substring(0,($readableNames.Length - 1))
            #else            = $line."property" 
    $output  

    As an alternate approach wee can preset the hash and just update it.  This version also deal with trapping the errors.
    function Get-UserRights{
    Param(
    [string]$tempfile="$env:TEMP\secedit.ini"
    $p=Start-Process 'secedit.exe' -ArgumentList "/export /cfg $tempfile /areas USER_RIGHTS" -NoNewWindow -Wait -PassThru
    if($p.ExitCode -ne 0){
    Write-Error "SECEDIT exited with error:$($p.ExitCode)"
    return
    $selines=get-content $tempfile|?{$_ -match '^Se'}
    Remove-Item $tempfile -EA 0
    $dct=$selines | ConvertFrom-StringData
    $hash=@{
    SeCreateTokenPrivilege =$null
    SeAssignPrimaryTokenPrivilege=$null
    SeLockMemoryPrivilege=$null
    SeIncreaseQuotaPrivilege=$null
    SeUnsolicitedInputPrivilege=$null
    SeMachineAccountPrivilege=$null
    SeTcbPrivilege=$null
    SeSecurityPrivilege=$null
    SeTakeOwnershipPrivilege=$null
    SeLoadDriverPrivilege=$null
    SeSystemProfilePrivilege=$null
    SeSystemtimePrivilege=$null
    SeProfileSingleProcessPrivilege=$null
    SeCreatePagefilePrivilege=$null
    SeCreatePermanentPrivilege=$null
    SeBackupPrivilege=$null
    SeRestorePrivilege=$null
    SeShutdownPrivilege=$null
    SeDebugPrivilege=$null
    SeAuditPrivilege=$null
    SeSystemEnvironmentPrivilege=$null
    SeChangeNotifyPrivilege=$null
    SeRemoteShutdownPrivilege=$null
    SeUndockPrivilege=$null
    SeSyncAgentPrivilege=$null
    SeEnableDelegationPrivilege=$null
    SeManageVolumePrivilege=$null
    SeImpersonatePrivilege=$null
    SeCreateGlobalPrivilege=$null
    SeTrustedCredManAccessPrivilege=$null
    SeRelabelPrivilege=$null
    SeIncreaseWorkingSetPrivilege=$null
    SeTimeZonePrivilege=$null
    SeCreateSymbolicLinkPrivilege=$null
    SeDenyInteractiveLogonRight=$null
    SeRemoteInteractiveLogonRight=$null
    SeServiceLogonRight=$null
    SeIncreaseBasePriorityPrivilege=$null
    SeBatchLogonRight=$null
    SeInteractiveLogonRight=$null
    SeDenyNetworkLogonRight=$null
    SeNetworkLogonRight=$null
    for($i=0;$i -lt $dct.Count;$i++){
    $hash[$dct.keys[$i]]=$dct.Values[$i].Split(',')
    $privileges=New-Object PsObject -Property $hash
    $privileges
    Get-UserRights
    A full version would be pipelined and remoted or, perhaps use a workflow to access remote machines in parallel.
    ¯\_(ツ)_/¯

  • How do I get the flash site to load an XML without security

    I made a music mp3 player but now the XML wont load and the
    music player says undefined. I changed security settings in Adobe
    Flash Player. But I dont want to have everybody who views it have
    to change settings. Is there some type of ActionScript code that
    will allow the XML to load without security problems. I have the
    XML on the same server folder as the .SWF file. The site url is :
    www.eternityfocus.com/test_flash.html

    you should use a crossdomain.xml policy file.

  • Can i export without double quotes in data files?

    How can i export without double quotes in data files using dataexport commands in MaxL?

    I don't know of any way to do any formatting in a straight export out of Essbase.  BSO lets you choose between a columnar vs. free form (really Essbase) format.  That lack of formatting includes removing double quotes.
    If you're willing to put up with the limitations (and formatting issues) of an MDX extract to a log file, that approach does not put double quotes around member names.  The same is true in Report Scripts although I have a vague recollection that you can put in double quotes if you want it -- obviously you do not.
    There are limitations to the above two approaches, the biggest being that they they are not as efficient as a true MaxL export.  OTOH, you may want only part of a database to get exported out in which case either approach may be more to your needs.
    If in fact you do want to do a full export, there are lots of OS-level ways of removing double quotes.  Here's a Windows-based approach:
    Removing double quotes in a batch program in Windows 2003 - Stack Overflow
    What would life be without hacks like the above?  Probably not worth living. 
    Regards,
    Cameron Lackpour

  • H.264 export without audio creates files that are not recognized in Quicktime or VLC

    Dear all,
    I need to generate h.264 files with video only. (short clips for use with a "clickable" catalog on an iPad)
    Used the "H.264" category and chose a preset. Unchecked "Audio" so I only get the video exported.
    The resulting .m4v file is not playable in Quicktime or VLC or MPEG streamclip.
    When I leave audio enabled with the same preset, the file is fine, but as soon as I export without audio, the resulting file is unreadable.
    Source material is ProRes 422HQ, audio+video, about 30-40 seconds long.
    Any clues?
    Carl.
    Mac Pro 5,1
    24GB RAM
    Nvidia Quadro4000
    4TB internal RAID0
    OS 10.7.5
    Premiere 6.0.2

    Thanks Jeff, I did get that far ;-)
    I'm sorry, probably my question wasn't very clear. Of course I can find some technical info about the iPad...
    And of course some of the presets in Media Encoder provide basic starting points for encoding.
    But... there is also the first iPad, I couldn't find the specs about it on the Apple site. On everymac.com I found:
    Apple reports that the iPad supports "H.264 video up to 720p, 30 frames per second, Main Profile level 3.1 with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats; MPEG-4 video, up to 2.5 Mbps, 640 by 480 pixels, 30 frames per second, Simple Profile with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats."
    So if I want to be compatible with all iPads I need to probably stay under 720p30 with [email protected] for H.264
    When I look at
    http://en.wikipedia.org/wiki/H.264/MPEG-4_AVC
    I find (from the example values) that 1280x720@30p is quite near the maximum matrix size. So with 1024x576 I should be ok there. My bandwith of about 2Mbit is also well within range in this case. But what if I want to fill an iPod screen (1024x768) with the highest possible quality video? How do I calculate if this fits the max frame size requirements, where this is expressed in a number of luma samples and macroblocks? What is my max bandwith? The tables says that the "Max video bit rate for video coding layer (VCL) kbit/s" should be <14.000kbps. Does that directly translate to the sliders in my encoding app?
    If you look in the table "AVC software implementations" (under Software encoder feature comparison) you can see that some features that are supported in MainConcept, and not supported in Qt. (8×8 vs. 4×4 transform adaptivity, Quantization scaling matrices, Separate Cb and Cr QP control, etc. What are these exactly?)
    In Streamclip one can choose to have B-frames or not, in AME there is no such control. Does that mean it always encodes with B-frames? Why would one not want to have B-frames?
    A lot of parameters in AME H.264 encoding seem to be set to certain fixed values that are not accessible to the user. Other programs (Sorensen, Telestream) provide the user with access to more parameters. Which parameters in AME are set to what (fixed, non-accessible) values and why?
    As I said earlier, Quicktime reports different codecs for what should be the same format but from different encoders. Why? Is there a program that can analyze a H.264 stream and report about it in more detail than VLC/Quicktime?
    etc. etc. etc....
    If anyone could recommend an online resouce or a book to learn more about the ins and outs of H.264 encoding/decoding that would be great. I have the first edition of Charles Poynton's (brilliant!) book "Digital Video and HDTV", which does talk about MPEG-2 but not H.264. I saw that the second edition goes a bit more into detail about H.264. Does anyone have the second edition? Worth buying just for the relatively small addition about H.264?
    Thanks.
    Carl.

  • Exporting Report Security from Workspace

    We are in the process of upgrading to 11.1.2.1 and was wondering if there was any way to export the security we have on our financial reports in Production Workspace so we can then import that into the upgraded Test system. Thanks.

    Hi,
    This can be done by using the Life Cycle Management. Have a read of Migrating Native Directory (Security) section in the LCM admin guide:
    http://download.oracle.com/docs/cd/E17236_01/epm.1112/epm_lifecycle_management/lcm_security_migration.htm
    Cheers,
    Mehmet

  • Export without Markup - JavaScript Error (ExtractTemplateXML.js)

    Whenever I try the "Export without Markup" function, I get this error:
    "While executing onClick in ExtractTemplateXML.htm, the following JavaScript error(s) occurred: At line 78 of file "C:\Program Files (x86)\Adobe\Adobe Dreamweaver CC\Configuration\Commands\ExtractTemplateXML.js": Exception thrown in native function."
    How do I resolve this?

    I know this post is old, but as I was having this issue lately, and managed to fix it - I thought I'd post the solution that worked for me, since I haven't seen it elsewhere.
    In short:
    Make sure there are no .zip files in the site you are exporting. I noticed my error was showing up right around when the export hit the folder where I had a .zip file.
    Go through and delete all of the /_notes/ garbage folders that DW puts in your source site.
    After I did both of these things, my export worked fine.

  • EXPort (without Mat view logs)

    Hi
    Oracle10g, Win2003
    Is there a way to take EXPort without "materialized view logs", as these logs cause error in IMPort and some time even terminate IMPort.
    It will be equally well for me if i got a way to completely exclude "materialized view & materialized view logs" from EXPort.
    Some one please guide me the way to exclude them from IMP or EXP?
    Wishes

    Additionally when ever I IMPort a user some objects appear in non-compiled state, I compile them with my client tool, but I have to drop and recreate materialized view every time.
    Can come one have an improved way to get IMPort with materialized view?
    Wisehs

  • Export without synonym ....

    Hi, how can i do for made a export without synonym because i need to exporta tables fromuser= x to user=y and give some errors....thanks

    i have oracle 9i version 9.2 and i did the export:
    exp system/manager file=userx.dmp grants=n compress=y owner=userx
    and el imoport:
    imp system/manager file=userx.dmp fromuser=userx touser=usery ignore=y
    give me this error:
    Connected to: Personal Oracle9i Release 9.2.0.1.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.1.0 - Production
    Export file created by EXPORT:V09.02.00 via conventional path
    import done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
    . importing CXP's objects into I4B
    . . importing table "COMPROMISOS"
    IMP-00058: ORACLE error 980 encountered
    ORA-00980: synonym translation is no longer valid
    IMP-00017: following statement failed with ORACLE error 980:
    "CREATE UNIQUE INDEX "PK_COMPROMISOS" ON "COMPROMISOS" ("COD_CIA" , "COD_TIP"
    "OCOMP" , "PERIODO" , "CORRELATIVO" ) PCTFREE 10 INITRANS 2 MAXTRANS 255 ST"
    "ORAGE(INITIAL 65536 FREELISTS 1 FREELIST GROUPS 1) TABLESPACE "INFOSWEB" LO"
    "GGING"
    IMP-00003: ORACLE error 980 encountered
    ORA-00980: synonym translation is no longer valid
    IMP-00017: following statement failed with ORACLE error 20000:
    "BEGIN DBMS_STATS.SET_INDEX_STATS(NULL,'"PK_COMPROMISOS"',NULL,NULL,NULL,33"
    "02,15,3302,1,1,1407,1,0); END;"
    IMP-00003: ORACLE error 20000 encountered
    ORA-20000: Unable to set values for index PK_COMPROMISOS: does not exist or insufficient privileges
    ORA-06512: at "SYS.DBMS_STATS", line 3613
    ORA-06512: at "SYS.DBMS_STATS", line 3718
    ORA-06512: at line 1
    IMP-00017: following statement failed with ORACLE error 20000:
    "BEGIN DBMS_STATS.SET_TABLE_STATS(NULL,'"COMPROMISOS"',NULL,NULL,NULL,3302,"
    "79,160,2); END;"

  • Export without Markup - How ?

    I can't figure out how to export without markup. I did it
    before but now can't
    What I want to do is export all the site pages and
    images/scripts/etc without markup
    I'm using DW 8
    Would someone mind explaining this to a total dummie
    Many thanks :-)

    > I think I just want to strip out DW markup, leave the
    html and code stuff
    >
    > I know it will disconnect the uploaded pages from the
    template but I'll make
    > the 'upload' dir contents kind of like a third leg of
    the editing. There will
    > be LOCAL, REMOTE, and UPLOAD
    Refer to my first reply-
    Dw menu-->Modify-->Templates-->Export without
    markup.
    export to a NEW folder, not within this site.
    Then go to menu->Site-->Manage Sites.
    Make a new site definition (or duplicate the present one)
    Define this new site's Local Site Folder to where you
    exported the files.
    You now have two sites- One for editing, with the template
    markup intact.
    One for uploading with the template markup stripped.
    Note- the template markup is a handful of html comments.
    There isn't any
    real advantage to stripping it out.
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • Export without Title Role

    What I am wanting to do is export without Text a clean Timeline. What would be the suggested route to take? Have tried turning of the Title Role and Exporting and found the text is still there. Why? Suggestions Please or even better Answers.
    P.S. Please Apple, Batch Export, Soon.

    what do you mean by "role." 
    Look at the names of the title "clips."  If they're all the same, simply do a find for the name in the sequence with find all.  They will all be selected and hit control-b to disable them all.
    When I finish a project, I find it useful to clean up the timeline and move all titles to a higher video track(s) so it's easy to turn this track's visibility off.

  • Export without crop

    What I would like is an 'export without crop' option. I crop the pictures I export for my clients. But for my own use in inDesign I want them full frame. I was discussing this with some of my collegues and they would love this feature as well, they said....

    function(){return A.apply(null,[this].concat($A(arguments)))}
    hsbn wrote:
    You can create virtual copy before doing the crop. That what I've done all the time.
    Exactly, and this is how to do it after the crop to clean up your history of cropping:
    Select the thumbs you have cropped and also want an uncropped version and add to a collection if they are in multiple folders
    Select all the thumbs in the collection
    Press ctr or cmd and ' (apostrophy) or from the menu: Photo > Make virtual copy
    Press R to crop and Reset in the crop panel.
    Assign a keyword or label to separate the cropped and uncropped versions if required
    You will now have two versions of each photo, cropped and uncropped.
    Rory

  • Does any one no how do download from App Store without security questions??? Pleaseeee

    My ipod won't let me download from App Store without security quistions any other way to download?

    Reset your security questions/answers:
    Forgotten Security Questions/Answers
    You need to contact Apple by:
    1 - Using this form
    Apple - Support -form iTunes Store - Contact Us
    2 - Call Apple in your country by getting the number from here:
    http://support.apple.com/kb/HE57
    3. Contact Apple by:          
    Apple ID: Contacting Apple for help with Apple ID account security
    For general  information see:
    Apple ID: All about Apple ID security questions

  • Is it normal that, when you recieve an imessage, you can open the iphone without security code ?

    Is it normal that, when you recieve an imessage, you can open the whole iphone without security code ? Just a small slide with the finger and you are in...

    As mentioned, if you have your passcode set to "immediately" lock, then no, you should be required to enter it.  Otherwise, if the message arrives before the passcode lock initiates, then yes, it will just open up with a swipe.

  • If my phone be stolen the stealer can turn off the phone without security code. Why?

    If my phone be stolen the stealer can turn off the phone without security code. Why?

    Because that's the way it is designed. If you don't like it, don't purchase an iPhone, or tell Apple you don't like it:
    http://www.apple.com/feedback/iphone.html

Maybe you are looking for

  • How do I use auto-form recognition to create PDF forms in Acrobat XI?

    I used to use Acrobat 9 to create PDF forms that would allow me to fill in text into the fields that were created.  Acrobat XI seems to have changed the way this function is performed.  Previously, I could run an auto form recognition wizard, do some

  • Can't get alternating rows style to work

    I have a spreadsheet in Numbers for iPad that I'm trying to style with alternating row colors. I don't even really care if its just gray and white, but I would like any form of alternating shades since I have a ton of data in one spreadsheet. It seem

  • Dynamic Sender File Name

    Hi, It’s a File to ABAP Proxy Scenario. The files would be processed differently depending on the file name which would be dynamic. It would suffice if the file name can be made visible in the payload. Does any one have any idea on how to implement t

  • PM Create Order tab is disable in IH01 transaction.

    Hi Consultants, I am facing a issue which is one of the user is not able to create Work order from IH01 t-code, where other users able to do so. I checked with security but they are saying all roles and authorizations provided to the user. Even they

  • JAVA Regex Illegal Characters

    Hello - I am trying to find a list of all illegal characters which have to be escaped in JAVA Regex pattern matching but I cannot find a complete list. Also I understand that when doing the replaceall function that there is a special list of characte