Need another disk in the script

Hello,
I have a nice script that does some FTP for me. The only thing is that I don't know how tho change the directory where the files will be stored :
set downloads_Folder to quoted form of (POSIX path of (((path to desktop from user domain) as string) & "IMAGESTODAY" & ":"))
This works fine but only with a folder IMAGESTODAY on the desktop.
I would like to have another DISK from the same computer where I can store the images. I tried alot of things to remove the desktop and to use my path to the disk :MAC2:IMAGES:TODAY. It will not work or make folders on the wrong locations.
How can I change the downloads_Folder?
Why will this not work ? :
set downloads_Folder to "MAC2:IMAGES:TODAY"
Thanks... Still learning... making progress step by step...

That's ok for me keep up the good advice
Thanks.

Similar Messages

  • Need help in writing the script in windows to read the file at runtime

    Hi All,
    I need a help with a Script. I need to read a filename from a directorty based on a specific format. I will be looking for the file in a directory that will have a file added to it each month. The script will need to go out to that directory determine the current month and Year and then grab that file based on the MONTHYEAR contained itn the file name and
    in the same script pass the filename to SQL Loader.
    The filename will consist of three parts VARIABLECONSTANTDATE.ext (example: FUELFILE11262007.txt: FUEL is a VARIABLE, FILE is constant, 11 two digit month, 26 two digit day,2007 four digit year.)
    I am stuck as how to how to read that into a string, find the file name and then pass that to sql loader.
    Any help much appreciated..
    Looking forward for your response.

    Use of External Tables will ease your problem...
    Here's what you can do:
    1. Create External tables (fuelfile.asc)
    2. Use Java code to read all filenames in a particular directory and store them in table
    3. Use PL/SQL block to loop through each filename in the table and write the file to the file of external table (fuelfile.asc)
    3.1 Transfer data from External table to main table
    Aalap Sharma :)

  • Hello need vertical  lines in the script

    Dear ABAP GURUS,
         I need to draw verticle lines in the script as a tabel, i have drawn the horizontal lines. I heard that there is the the function module to draw the verticle lines but how is that possible to use in the script. Plwase help me out in drawing the vericle lines, i Have tried using the vline but no use.

    Hi Soni,
      Its very easy to draw the vertical lines in a script.  Use BOX statement to draw the same.  Check out the syntax for BOX statement.  Give the 'Y' coordinate only and do not mention 'X' coordinate.  So that the box will appear as a vertical line.  Check it.
    Boxes, Lines, Shading: BOX, POSITION, SIZE
    The BOX, POSITION and SIZE commands for drawing boxes, lines and shadowing can be used for specifying that within a layout set particular windows or passages of text within a window are to be output in a frame or with shadowing.
    The SAP printer drivers that are based on page-oriented printers (the HP LaserJet driver HPL2, the Postscript driver POST, the Kyocera Prescribe driver PRES) employ these commands when outputting. Line printers and page-oriented printers not supported in the standard ignore these commands. The resulting printer output may be viewed in the SAPscript print previewer.
    Syntax:
    1. /: BOX [XPOS] [YPOS] [WIDTH] [HEIGHT] [FRAME] [INTENSITY]
    2. /: POSITION [XORIGIN] [YORIGIN] [WINDOW] [PAGE]
    3. /: SIZE [WIDTH] [HEIGHT] [WINDOW] [PAGE]
    BOX Command
    Syntax
    /: BOX [XPOS] [YPOS] [WIDTH] [HEIGHT] [FRAME] [INTENSITY]
    Effect: draws a box of the specified size at the specified position.
    Parameters: For each of XPOS, YPOS, WIDTH, HEIGHT and FRAME both a measurement and a unit of measurement must be specified. The INTENSITY parameter should be specified as a percentage between 0 and 100.
    1. XPOS, YPOS: Upper left corner of the box, relative to the values of the POSITION command.
    Default: Values specified in the POSITION command.
    The following calculation is performed internally to determine the absolute output position of a box on the page:
    X(abs) = XORIGIN + XPOS
    Y(abs) = YORIGIN + YPOS
    2. WIDTH: Width of the box. Default: WIDTH value of the SIZE command.
    3. HEIGHT: Height of the box. Default: HEIGHT value of the SIZE command.
    4. FRAME: Thickness of frame.
    Default: 0 (no frame).
    5. INTENSITY: Grayscale of box contents as % .
    Default: 100 (full black)
    Measurements: Decimal numbers must be specified as literal values (like ABAP numeric constants) by being enclosed in inverted commas. The period should be used as the decimal point character. See also the examples listed below.
    Units of measurement: The following units of measurement may be used:
    • TW (twip)
    • PT (point)
    • IN (inch)
    • MM (millimeter)
    • CM (centimeter)
    • LN (line)
    • CH (character).
    The following conversion factors apply:
    • 1 TW = 1/20 PT
    • 1 PT = 1/72 IN
    • 1 IN = 2.54 CM
    • 1 CM = 10 MM
    • 1 CH = height of a character relative to the CPI specification in the layout set header
    • 1 LN = height of a line relative to the LPI specification in the layout set header
    /: BOX FRAME 10 TW
    Draws a frame around the current window with a frame thickness of 10 TW (= 0.5 PT).
    /: BOX INTENSITY 10
    Fills the window background with shadowing having a gray scale of 10 %.
    /: BOX HEIGHT 0 TW FRAME 10 TW
    Draws a horizontal line across the complete top edge of the window.
    /: BOX WIDTH 0 TW FRAME 10 TW
    Draws a vertical line along the complete height of the left hand edge of the window.
    /: BOX WIDTH '17.5' CM HEIGHT 1 CM FRAME 10 TW INTENSITY 15
    /: BOX WIDTH '17.5' CM HEIGHT '13.5' CM FRAME 10 TW
    /: BOX XPOS '10.0' CM WIDTH 0 TW HEIGHT '13.5' CM FRAME 10 TW
    /: BOX XPOS '13.5' CM WIDTH 0 TW HEIGHT '13.5' CM FRAME 10 TW
    Draws two rectangles and two lines to construct a table of three columns with a highlighted heading section.
    POSITION Command
    Syntax
    /: POSITION [XORIGIN] [YORIGIN] [WINDOW] [PAGE]
    Effect: Sets the origin for the coordinate system used by the XPOS and YPOS parameters of the BOX command. When a window is first started the POSITION value is set to refer to the upper left corner of the window (default setting).
    Parameters: If a parameter value does not have a leading sign, then its value is interpreted as an absolute value, in other words as a value which specifies an offset from the upper left corner of the output page. If a parameter value is specified with a leading sign, then the new value of the parameter is calculated relative to the old value. If one of the parameter specifications is missing, then no change is made to this parameter.
    1. XORIGIN, YORIGIN: Origin of the coordinate system.
    2. WINDOW: Sets the values for the left and upper edges to be the same of those of the current window (default setting).
    3. PAGE: Sets the values for the left and upper edges to be the same of those of the current output page (XORIGIN = 0 cm, YORIGIN = 0 cm).
    /: POSITION WINDOW
    Sets the origin for the coordinate system to the upper left corner of the window.
    /: POSITION XORIGIN 2 CM YORIGIN '2.5 CM'
    Sets the origin for the coordinate system to a point 2 cm from the left edge and 2.5 cm from the upper edge of the output page.
    /: POSITION XORIGIN '-1.5' CM YORIGIN -1 CM
    Shifts the origin for the coordinates 1.5 cm to the left and 1 cm up.
    SIZE Command
    Syntax
    /: SIZE [WIDTH] [HEIGHT] [WINDOW] [PAGE]
    Effect: Sets the values of the WIDTH and HEIGHT parameters used in the BOX command. When a window is first started the SIZE value is set to the same values as the window itself (default setting).
    Parameters: If one of the parameter specifications is missing, then no change is made to the current value of this parameter. If a parameter value does not have a leading sign, then its value is interpreted as an absolute value. If a parameter value is specified with a leading sign, then the new value of the parameter is calculated relative to the old value.
    1. WIDTH, HEIGHT: Dimensions of the rectangle or line.
    2. WINDOW: Sets the values for the width and height to the values of the current window (default setting).
    3. PAGE: Sets the values for the width and height to the values of the current output page.
    /: SIZE WINDOW
    Sets WIDTH and HEIGHT to the current window dimensions.
    /: SIZE WIDTH '3.5' CM HEIGHT '7.6' CM
    Sets WIDTH to 3.5 cm and HEIGHT to 7.6 cm.
    /: POSITION WINDOW
    /: POSITION XORIGIN -20 TW YORIGIN -20 TW
    /: SIZE WIDTH +40 TW HEIGHT +40 TW
    /: BOX FRAME 10 TW
    A frame is added to the current window. The edges of the frame extend beyond the edges of the window itself, so as to avoid obscuring the leading and trailing text characters.
    Thanks & regards
    Kishore Kumar Maram

  • Need to be tuned the script

    Hello
    Any suggestions in tuning following script.
    SET LINESIZE 178
    SPOOL &1
    PROMPT @@ &2
    PROMPT @@ &3
    PROMPT @@ &4
    SELECT
    LPAD(a.lief_nr, 5,' ')
    || LPAD(a.iln_nr,13,' ')
    || a.lief_art
    || a.art_list_kz
    || a.art_ean_kz
    || a.distri_radius
    || a.import_sl
    || a.werb_verre_kz
    || a.loesch_kz
    || a.sperr_kz
    || a.edi_kz
    || LPAD(NVL(TO_CHAR(a.lief_dsd_nr), ' '),7,' ')
    || LPAD(NVL(a.ums_st_id,'@'),14,' ')
    || LPAD(NVL(TO_CHAR(a.vertrag_dat,'DDMMYYYY'),' '),8,' ')
    || LPAD(NVL(TO_CHAR(b.lml_lief_nr),' '),5,' ')
    || LPAD(NVL(TO_CHAR(c.w11_adr_sl),' '),9,' ')
    || SUBSTR(DECODE(c.match_name, NULL, LPAD(' ', 40, ' '), LPAD(c.match_name,40,' ')||LPAD(c.match_name,40,' ')), 1, 40)
    || SUBSTR(DECODE(c.match_ort, NULL, LPAD(' ', 15, ' '), LPAD(c.match_ort,15,' ')||LPAD(c.match_ort,15,' ')), 1, 15)
    || c.neu_list_kz
    || LPAD(d.lts_nr, 2,' ')
    || SUBSTR(DECODE(d.lts_bez, NULL, LPAD(' ', 33, ' '), LPAD(d.lts_bez,33,' ')||LPAD(d.lts_bez,33,' ')), 1, 33)
    || LPAD(d.urb_eksg,3,' ')
    || ' '
    || LPAD(NVL(TO_CHAR(e.zahl_ziel),' '),3,' ')
    || LPAD(NVL(TO_CHAR(e.sdr_zahl_tage),' '),3,' ')
    FROM LI_ALLG a,
    ( SELECT lief_nr, lml_lief_nr, gueltig_bis
    FROM LI_KONZERN_LIEF
    WHERE (lief_nr, gueltig_bis) IN
    (SELECT lief_nr, MAX(gueltig_bis) gueltig_bis
    FROM LI_KONZERN_LIEF
    GROUP BY lief_nr)
    AND to_char(sysdate, 'YYYY') - to_char(gueltig_bis, 'YYYY') < 3
    AND gueltig_ab <= sysdate
    ) b,
    LI_LIEFERANT c,
    LI_LTS_ALLG d,
    ( SELECT lief_nr, lts_nr, zahl_ziel, sdr_zahl_tage
    FROM LI_LTS_ZAHLUNG
    WHERE (lief_nr, lts_nr, gueltig_ab) IN
    ( SELECT lief_nr, lts_nr, max(gueltig_ab)
    FROM LI_LTS_ZAHLUNG
    GROUP BY lief_nr, lts_nr
    AND to_char(sysdate, 'YYYY') - to_char(gueltig_bis, 'YYYY') < 3
    AND gueltig_ab <= sysdate
    ) e
    WHERE
    c.lief_nr=a.lief_nr
    AND (a.lief_nr, a.gueltig_bis) IN
    (SELECT lief_nr, max(gueltig_bis)
    from LI_ALLG
    where to_char(sysdate, 'YYYY') - to_char(gueltig_bis, 'YYYY') < 3
    and gueltig_ab <= sysdate
    group by lief_nr
    AND c.lief_nr=b.lief_nr(+)
    AND c.lief_nr=d.lief_nr
    AND (d.lief_nr, d.gueltig_bis) IN
    (SELECT lief_nr, max(gueltig_bis)
    from LI_LTS_ALLG
    where to_char(sysdate, 'YYYY') - to_char(gueltig_bis, 'YYYY') < 3
    and gueltig_ab <= sysdate
    group by lief_nr
    AND a.lief_nr = e.lief_nr(+)
    AND e.lts_nr = d.lts_nr
    PROMPT @@@ THE END

    Can you post the execution plan for this query?
    Also,
    Oracle Version
    Number of records in tables/returned by sub-queries
    Edit: There are condition checks which go as
    TO_CHAR (SYSDATE, 'YYYY') - TO_CHAR (gueltig_bis, 'YYYY') < 3
    These could be rewritten as following, if there were any indexes defined on Gueltig_bis column
    gueltig_bis between to_char (sysdate, 'YYYY')-2 and to_char (SYSDATE, 'yyyy')

  • Nokia N8: Need another earphones with the Nokia co...

    the standard earphone that came in box, http://www.nokiasite.net/wp-content/plugins/wp-o-matic/cache/97c9d_Nokia-N8-earphones.jpg , I find very hard to fit my ear, they just dont stay and keep falling off, the normal earphones I prefer more, http://www.argonaudio.com/image/products/EP4001_IN-EAR_HEADPHONES_1_m.jpg ,
    Can anyone show my a product with this normal earphones but I want it to have a controller in-line to be able to answer calls and play/pause music with my Nokia N8.
    Thanks.

    I have a remote control with jack-in and mic from my previous phone, N97. Works just fine with N8 and you can connect any earphones you want to it.

  • I have an apple time capsule and am about to have xfinity cable and internet hooked up in my new apartment.  The cable provider said I need a modem that is Docsis3 capable - will my time capsule do the job or do i need another modem?  Thanks

    I have an apple time capsule and am about to have xfinity cable and internet hooked up in my new apartment.  The cable provider said I need a modem that is Docsis3 capable - will my time capsule do the job or do i need another modem?  Thanks

    will my time capsule do the job or do i need another modem?
    The Time Capsule is only a router...with a built in hard drive. It does not have a modem built in, so you will need to use a separate modem with your new calbe service.
    If the cable provider offers a modem with their service it would be good idea to use that device, as you know that it will be supported by your provider in the event of any Internet connection difficulties.
    If the provider does not offer a modem, I am sure that they have a list of compatible modems on their website, or check with customer support for more information.

  • Copying objects in the script editor

    Hello,
    I need to add a new user to my call center script.  This user will have the same objects as another user on the script the only difference will be the name of the skill group on those three objects.   Can I just copy those objects from the other user and rename them or do I have to add new objects for that user and if so how do I do that?
    Thank You.

    I'm sorry, but Anthony Holloway is not available.  Please leave your message at the tone.  Beep.
    PS: That's Enterprise, and differs quite a bit from Express.  You should state that in your thread topic, so that it grabs the attention of the right people.  Plus, giving accurate and full descriptions is just plain helpful.

  • How to write the script in E-tester

    Hi i am new to e-tester. we are doing some R&D on empirix e-tester tool. We are familiar with QTP tool. we are able to record and play the script but we are unable to enhance the script.
    But when i went through this threads i came to know that we can use VBA script or VB script or etc for enhancing the script. current we are using "oracle Functional Testing for web applications 8.50.0260" version.
    Can any body please guide me and explain the procedure for enhancing the script and what is the use of open script.
    Is it required for e-load or e-tester. pls specify me its very urgent
    thanks inadvance...........pls

    Hi Alex,
    Nice reply, I need one more clarification. when installing OFT 8.5 software do we require any other software or any other set or funda for that. I am able to add some vbscript in test scrplet but when execution comes to that point node its getting halted and result is getting failed.
    can i take any precautions or any hierarchy or guidelines i need maintaing before writing the script on the scriplet.
    please give me the procedure. sorry for repeatedly asking as it's very important i have been raising the same question from couple of days.
    code i have writte over there
    msgbox("anjani")
    dim a=10
    dim b=20
    dim c=a+b
    msgbox c
    pls pass your mail id we can discuss later also my id is [email protected] plssssssssss
    anjani

  • Where the Script is Stored

    HI,
    when we create table or view or something, a script is generated and stored in the database,
    i need to know where the script data is stored i.e in which table
    i know function, procedure script is stored in user_source(text column)
    can any one know about this?

    If your purpose is to see the DDL used to create the object, you can use DBMS_METADATA package. Example :
    SQL> create table foo(a number primary key, b varchar2(20));
    Table created.
    SQL> select dbms_metadata.get_ddl('TABLE','FOO') from dual;
    DBMS_METADATA.GET_DDL('TABLE','FOO')
      CREATE TABLE "TEST"."FOO"
       (    "A" NUMBER,
            "B" VARCHAR2(20),
             PRIMARY KEY ("A")
      USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255
      STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
      PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
      TABLESPACE "USERS"  ENABLE
       ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING
      STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
      PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
      TABLESPACE "USERS"
    SQL>

  • Moving iMovie projects to another disk

    On my desktop, a warning box appeared telling me that the start-up disc is almost full.
    Disk Utility confirms that on the 560 GB capacity disk, there is only 1 GB space available.
    In iMovie on that same disk, there are several dozen movie projects.
    I would like to move most of these projects to another disk in the MacPro (there are three other disks), but still want to work on the iMovie projects on the start-up disk.
    Is there a way of storing the files on another disk, and still working on the projects on the start-up disk?
    Thank you in advance, Isshi.

    You can store Projects and/or Events on an external or secondary disk. The disk must be formatted as Mac OS Extended (Journaled).
    For moving projects see this.
    http://help.apple.com/imovie/#move7d66613
    For moving project assets (events, photos, music) see this.
    http://help.apple.com/imovie/#mov3ac6c7c9
    For moving Events, see this.
    http://help.apple.com/imovie/#mov3ac6d42c

  • How to write the script to watch InDesign actions?

    Hi All,
    I'd like to write a script or a .Net tool to watch the InDesign actions and alert the user for any deviations like the option 'Live Preflight' in InDesign CS4? Pl. suggest.
    Thanks,
    Praveen

    Hi Alex,
    Nice reply, I need one more clarification. when installing OFT 8.5 software do we require any other software or any other set or funda for that. I am able to add some vbscript in test scrplet but when execution comes to that point node its getting halted and result is getting failed.
    can i take any precautions or any hierarchy or guidelines i need maintaing before writing the script on the scriplet.
    please give me the procedure. sorry for repeatedly asking as it's very important i have been raising the same question from couple of days.
    code i have writte over there
    msgbox("anjani")
    dim a=10
    dim b=20
    dim c=a+b
    msgbox c
    pls pass your mail id we can discuss later also my id is [email protected] plssssssssss
    anjani

  • Itunes restore asking for another disk

    I backed up my Itunes library on a DVD this afternoon before doing a fresh windows install.
    When I went to restore, it only restored about two-thirds of my music, then asked me for another disk.
    The problem is, there is no other disk. Everything fit onto one disk.  According to the disk, it has all 600+ songs, but will only put on almost 400.
    Can anyone help me? Or is anyone else expirencing the same issue?

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down page in case one of them applies.
    If you cannot get a component to uninstall properly move on to the next one, then delete the named folder. The reinstall should be successful.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    tt2

  • I need help on my MacBook Pro. Recently I've deleted another partition of my disk from the disk utility and I found out that my disk capacity wasn't get into the normal one which is 750GB. Meanwhile I installed window 7 into the partition disk.

    I need help on restoring my disk capacity back to normal. I installed window 7 into the partition disk through bootcamp and I deleted it from disk utility. After I erase the partition disk,I get my capacity to 499GB but not 750GB. Do I need to reinstall my MacBook or something to do with the restoring?

    Welcome to the Apple Support Communities
    Rodney Lai wrote:
    I installed window 7 into the partition disk through bootcamp and I deleted it from disk utility
    You shouldn't do it. You have to erase the Windows volume with Boot Camp Assistant, so it will restore the space onto the OS X volume and that volume will have 750 GB.
    As you did it with Disk Utility, you have to resize your OS X partition manually:
    1. Open Disk Utility, select your hard disk at the top of the sidebar, and go to Partition tab.
    2. You will see a bar with Macintosh HD. You have to click it at the bottom right corner and drag it to the end of the bar, so Macintosh HD will use all the space of the hard drive, and press Apply.
    3. Close Disk Utility and your OS X partition will have 750 GB

  • Backup DC past tombstone and need help replacing it with another DC with the same name and IP

    Hey Everyone
    We have a single domain in a forest with 2 DCs with AD integrated DNS configured. The primary DC with all the FSMO roles is a VM (Server 2008 R2) and the backup DC is a physical server (Server 2008 non-R2).
    The backup DC's hardware is very old and has been giving us a lot of issues where the system would intermittently BSOD, freeze, black screen only etc. and as a result, the server was turned off for a very long time, definitely beyond the default tombstone
    lifetime of either 60 or 180 days.
    We want to replace this bad backup DC with another physical server which became available as a spare and is much newer and in a working condition hardware wise. We also wish to ultimately give it the same name (FQDN) and IP to basically make it an outright
    replacement for the current bad backup DC.
    My questions are:
    1.) If we are in a position where the bad server could possibly physically boot and start the operating system and have network connectivity, will we be able to use DCPROMO as one would normally do to demote this DC, or will it have to be done forcefully,
    while keeping in mind as I said that the DC is way past the tombstone lifetime period?
    2.) If it has to be done forcefully, I am aware that the meta data needs to be cleaned up in AD on the working primary DC, although I have never performed such a process before. If this is done, are there any other things I need to look out for or do
    before I attempt to replace it with the other server which I will set up wit the same name (FQDN) and IP, then add to the domain, and then lastly promote as per normal using DCPROMO?
    I know we will have to upgrade the scema to 2012RM as the replacement backup DC will be running this newer operating system.
    Anything else you wish to add or point out to me would be highly appreciated. Thank you in advance.
    Regards,
    CTV

    Hi,
    I would suggest please do the metadata cleanup using the script and then remove object from below DNS console and then run the repadmin /syncall /Aed
    https://gallery.technet.microsoft.com/scriptcenter/d31f091f-2642-4ede-9f97-0e1cc4d577f3
    Repeat running the vbs script till the wrong/unnecessary dc’s are removed.
             Cross check the removal – dsa.msc [ad users and computers] > Domain Controllers OU
     Adsiedit.msc
     Expand domain partition, select OU=Domain Controllers, make sure only the necessary domain controllers are listed.
     Delete the incorrect domain controllers.
    Dnsmgmt.msc [Dns Management]
          Expand the forward lookup zones\_msdcs folder
    i.      Make sure only the actual domain controllers are listed, delete wrong Alias recordsremove wrong name server records
    ii.      Select the container [forward lookup zones\_msdcs.domain.com\dc\_sites_\sitename\_tcp] > delete incorrect _ldap and _kerberos records are listed.
    iii.      Select the container [forward lookup zones\_msdcs.domain.com\dc\_tcp] and delete incorrect _ldap and _kerberos records
    iv.      Expand the [forward lookup zones\_msdcs.domain.com\domains\guid\_tcp] and delete incorrect _ldap entries
    v.      Select [forward lookup zones\_msdcs.domain.com\gc] – delete incorrect HostA records
    vi.      Expand the [forward lookup zones\_msdcs.domain.com\gc\_sites\sitename\_tcp] – delete incorrect _ldap entries
    vii.      Select the [forward lookup zones\_msdcs.domain.com\gc\_tcp] – delete incorrect _ldap entries
    viii.      Select the [forward lookup zones\_msdcs.domain.com\pdc\_tcp] – delete incorrect _ldap entries
          Expand the forward lookup zones\domain.com folder
    i.           
    Delete Host(A) records of dc’s which are non-existant.
    ii.           
    Correct the NameServer (NS) records
    iii.           
    Follow steps similar to ’ A ii ‘ >> ‘ A viii’
             Dssite.msc [Sites and Services]
          Expand the [Sites\Sitename\Servers] – delete incorrect server’s
    B.      Delete incorrect subnet configurations [Sites\Subnets]
          Delete incorrect site links [Sites\IP]

  • I have just upgraded to Mavericks and have been using Time Machine on an external disk with Snow Leopard.  Can I continue to backup with Time Machine on the same external disk or do I need a new disk since the operating system has changed?

    I have just upgraded to Mavericks and have been using Time Machine on an external disk with Snow Leopard.  Can I continue to backup with Time Machine on the same external disk or do I need a new disk since the operating system has changed?

    Hi there,
    I found that Time Machine in Mavericks will sort it all out for you. You shouldn't need to buy another backup drive, unless you have insufficient space left and can't afford to delete whats on there. It should just work fine.

Maybe you are looking for

  • IMac hooked up to my Hi Fi receiver

    Hi I wanted to be able to listen to all my digital itunes library on my Hi Fi system so i bought a cable at monoprice(PREMIUM 15FT 3.5mm Stereo Male to 2RCA Male 22AWG Cable - Gold Plated) to hook up my iMac to the receiver. I notice that when i do n

  • Apple Mail Graphic Artifacts Bug?

    For starters, I never encountered this issue with Lion.  But when I open Mail 6.0 (most of the time), I receive odd graphical artifacts around the message (especially messages that have graphics (i.e. pictures) on the right.  I took it to Apple and t

  • Creating new material

    Hi everybody im trying to create a new material using BAPI through C#. im using BAPI_MATERIAL_GETINTNUMBER then BAPI_MATERIAL_SAVEDATA to create the new material and everything working but when i try to create a new purchase order for the new materia

  • Arabic search using robohelp

    Hi Can we search using arabic text in the search fild in a help created using robohelp? Please advice if any data required please contact me on [email protected] Thanx Abdallah

  • Repeating methods?

    Hi there, i have an issue which i cant solve. when ever i call a method from another class in my program, it repeatst he method twice. any thoughts? Here is my code: import java.util.*; public class Driver {      public static void main(String args[]