Follow up IE msstree's question

Thanks to all for your pass help!
This is great, I have found most of my questions answered from pass discussions.
Don, I have read of your fondless for OS9 and I agree.
I have experienced several problem with IE and looking for a new browser I am finding that many web pages and browsers are not supporting OS9 and I'm assuming it's not going to get any better in the future.
My question/plan is to partition my new 120 GB HD with OSX__ for internet uses or whatever and the rest of it for everything else with OS9.2.
Then uses my old 10GB WD HD for back up.
The only reason I'm do anything is because of the internet problems, my needs are simple.Once I install OSX, I will probably go with a different browser, I don't think I will miss IE.
Does this seem like a plan that will take care of my future needs?
Thanks again,
Les Confused

Hi, Les -
Does this seem like a plan that will take care of my future needs?
Yes.
Regarding browsers in OS 9, I still use IE - I don't do much surfing on the web any more, just visit a number of sites regularly, all of which display and behave properly with IE in OS 9.
Some folk who have run into site issues using even the latest IE for OS 9 version have suggested switching to one of the Mozilla renditions or other browsers.
Nonetheless, as time goes by more and more sites will no longer be friendly to browsers that run in OS 9. Partly that will be because the site contstructor/author chooses not to code the site for access by old browsers; or it may be because the needs of the site include features incompatible with old browsers.
We Mac users tend to hang onto our machines and software longer than other platform users do, simply because the machines are better and do not suffer the frequency of (intentional) obsolescence of the hardware and/or software. Eventually, though, technology moves forward beyond the reach of our machines or OS's.
That's the way it is - old technology eventually becomes unusable when faced with new technology and demands. Regardless of my fondness for it, OS 9 is old technology... and eventually I will need to upgrade to more current stuff.

Similar Messages

  • Get the current runspace of a powershell instance (Follow up to a previous question - Link in question)

    So this is a follow up question to a question I posted last week
    If
    PS {some Path}>C: = PS C:\> then why not HKLM: = PS HKLM:\>
    So here is where I am with the question above
    After running pretty much all of the powershell related DLL files through redgate's .NET Reflector I fiinally discovered where those "C:" = "Set-Location C:" were being created.
    namespace System.Management.Automation.Runspaces
    public class InitialSessionState
    // More here but cut them out to save space in this post
    internal static SessionStateFunctionEntry[] BuiltInFunctions = new SessionStateFunctionEntry[]
    new SessionStateFunctionEntry("prompt", DefaultPromptString),
    // More here but cut them out to save space in this post
    new SessionStateFunctionEntry("A:", "Set-Location A:"),
    new SessionStateFunctionEntry("B:", "Set-Location B:"),
    new SessionStateFunctionEntry("C:", "Set-Location C:"),
    new SessionStateFunctionEntry("D:", "Set-Location D:"),
    new SessionStateFunctionEntry("E:", "Set-Location E:"),
    new SessionStateFunctionEntry("F:", "Set-Location F:"),
    new SessionStateFunctionEntry("G:", "Set-Location G:"),
    new SessionStateFunctionEntry("H:", "Set-Location H:"),
    new SessionStateFunctionEntry("I:", "Set-Location I:"),
    new SessionStateFunctionEntry("J:", "Set-Location J:"),
    new SessionStateFunctionEntry("K:", "Set-Location K:"),
    new SessionStateFunctionEntry("L:", "Set-Location L:"),
    new SessionStateFunctionEntry("M:", "Set-Location M:"),
    new SessionStateFunctionEntry("N:", "Set-Location N:"),
    new SessionStateFunctionEntry("O:", "Set-Location O:"),
    new SessionStateFunctionEntry("P:", "Set-Location P:"),
    new SessionStateFunctionEntry("Q:", "Set-Location Q:"),
    new SessionStateFunctionEntry("R:", "Set-Location R:"),
    new SessionStateFunctionEntry("S:", "Set-Location S:"),
    new SessionStateFunctionEntry("T:", "Set-Location T:"),
    new SessionStateFunctionEntry("U:", "Set-Location U:"),
    new SessionStateFunctionEntry("V:", "Set-Location V:"),
    new SessionStateFunctionEntry("W:", "Set-Location W:"),
    new SessionStateFunctionEntry("X:", "Set-Location X:"),
    new SessionStateFunctionEntry("Y:", "Set-Location Y:"),
    new SessionStateFunctionEntry("Z:", "Set-Location Z:"),
    new SessionStateFunctionEntry("cd..", "Set-Location .."),
    new SessionStateFunctionEntry(@"cd\", @"Set-Location \"),
    Then further down in the class it is called 
    public static InitialSessionState CreateDefault()
    InitialSessionState state = new InitialSessionState();
    state.Variables.Add(BuiltInVariables);
    state.Commands.Add(new SessionStateApplicationEntry("*"));
    state.Commands.Add(new SessionStateScriptEntry("*"));
    state.Commands.Add(BuiltInFunctions);
    state.Commands.Add(BuiltInAliases);
    foreach (PSSnapInInfo info in PSSnapInReader.ReadEnginePSSnapIns())
    try
    PSSnapInException exception;
    state.ImportPSSnapIn(info, out exception);
    catch (PSSnapInException exception2)
    throw exception2;
    state.LanguageMode = PSLanguageMode.FullLanguage;
    state.AuthorizationManager = new PSAuthorizationManager(Utils.DefaultPowerShellShellID);
    return state.Clone();
    So the InitialSessionState class fills in these values.
    My problem now is I cannot seem to find out how to get an attachment to the CURRENT either
    InitialSessionState
    Runspace
    I can find plenty of forum posts and blogs about how to run powershell in c# but they ALL involve instantiating a NEW powershell runtime.
    I can and have written
    InitialSessionState iss = InitialSessionState.CreateDefault();
    and I can step through the debugger and watch it fill in the functions but as soon as it finally gets to the powershell prompt all the functions are gone.
    On another attempt I tried to create a runspace from the current host
    thisRunspace = RunspaceFactory.CreateRunspace(this.Host);
    where this is public class ConfluenceProvider : NavigationCmdletProvider
    And the line of code above is called in 
            protected override System.Collections.ObjectModel.Collection<PSDriveInfo> InitializeDefaultDrives()
    When I run the code and debug  the runspace created has a different InstanceId than what ultimately shows up in the powershell console if I do $Host.Runspace.InstanceId
    This provider will ultimately be a part of a module with other cmdlets and functions but I would like to know how to attach to the actual runspace, sessionstate, WHATEVER will do the trick that the module is loaded into so I can add functions to it.
    So if anyone has any clue or knows of other blogs, walkthroughs i could read through that covers this it would be a huge help.
    Thanks again everyone
    Quidquid latine dictum sit, altum videtur

    Hi Tofubug,
    Since I'm not familiar about C#, however, if want to run powershell script in C#, the script below may be helpful for you:
    RunspaceConfiguration runspaceConfiguration = RunspaceConfiguration.Create();
    Runspace runspace = RunspaceFactory.CreateRunspace(runspaceConfiguration);
    runspace.Open();
    RunspaceInvoke scriptInvoker = new RunspaceInvoke(runspace);
    Pipeline pipeline = runspace.CreatePipeline();
    //Here's how you add a new script with arguments
    Command myCommand = new Command(scriptfile);
    CommandParameter testParam = new CommandParameter("key","value");
    myCommand.Parameters.Add(testParam);
    pipeline.Commands.Add(myCommand);
    // Execute PowerShell script
    results = pipeline.Invoke();
    And these threads for your reference:
    Execute PowerShell Script from C# with Commandline Arguments
    How to run PowerShell scripts from C#
    How do you set FullLanguage mode
    for remote PowerShell from C#?
    If I have any misunderstanding, please feel free to let me know.
    Best Regards,
    Anna Wang

  • Multiple DB files clean migration (follow up to my decommission question)

    So I have requested help standing up a new environment and phasing out an old one since it was "all messed up" after spending some time digging into it it looks like best practice was followed (which I don't know how I missed this after reading
    through Mastering the fundamentals by Kent Agerlund multiple times). Apparently they suggest you create multiple SQL file based on how many CPU's you have available to help performance. 
    The question I have now is when the backup site task runs it only backs up 1 2GB MDF file and a 11GB LDF file. Does that make sense? It doesn't look like the other SQL files that were created are being used at all? None of the SQL files have not grown past
    the initial size (the first file started at 2GB and is still that size). 
    Assuming everything is working correctly my new plan would be to upgrade the existing setup and do a backup and restore to the new box using the same site code and server name. If I do that will it bring all those other SQL files with it our can I consolidate
    onto 1 file again? I don't think we need to worry about performance as the DB is pretty small and I'm trying to keep things simple. 
    My other choice is I have the new server built with new site code so I could add the first site as a child site and migrate things over? I have multiple DP's out there so I'm not sure best way to handle that. The plan was to blow them away and rebuild brand
    new ones for the new site, but if I can just throw an upgrade on them that should work and be less work. 

    My other choice is I have the new server built with new site code so I could add the first site as a child site and migrate things over?
    That won't work in CM12.
    Just back up the database using SQL and use that for the restore (there's no need for the SMSBackup task in CM12).
    Torsten Meringer | http://www.mssccmfaq.de

  • Follow-up to Simple, Dumb Question

    I couldn't see a reply button on the screen - looked everywhere. I'm on OS X 10.8.2.
    Original question: have downloaded InDesign, can't open it, clicking on icon gets no result.

    Inside the Application folder should be a folder for InDesign. Inside the InDesign folder is the application. Clicking on the application will launch the program.

  • Follow up bulkload with Cygwin question

    Following the advice of a previous post, I installed Cygwin to run the bulkload tools. I am confused now how the bulkload script will know where my OracleHome is (since is doesn't recognise the c:\ drive, just /home). Do I have to reinstal my oracle software inside the Cygwin directory structure?
    Thanks a lot,
    Keith

    Set ORACLE_HOME in the profile file under /etc
    ex. export ORACLE_HOME=c:/oracle/<ORACLE_HOME>
    You can change to any window directory by typing cd <some dir>
    ex. cd c:
    This will take you to /cygdrive/c which is an alias for your c directory.
    type ls and you will see all directories under c:
    /Hans

  • Follow up to web services question:  How do I expose java components as web services on iPlanet 6.0 app server?

    My task - my company has several legacy PowerBuilder applications that access a variety of Sybase and MS SQL databases. Rather than re-inventing the wheel by re-writing these applications in Java, we would like to enable these applications to call java components (EJBs) that will provide new functionality. I would need a piece of software called CSXtend (from www.cynergysystems.com) to allow PowerBuilder to call a web service. However, I am not sure how to expose my business functions (EJBs) as web services on the iPlanet 6.0 App server. Thanks for all previous responses! Any additional info would be greatly appreciated! Mike

    I have used Glue (http://www.themindelectric.com/products/glue/glue.html) to expose some of our stuff as Web Services. I recently found this on serverside. It's pretty good.
    http://www.theserverside.com/resources/article.jsp?l=Systinet-web-services-part-1
    I believe that the middleware they use can be plugged into IPlanet. There is also an article in the knowledge base on the IPlanet site.
    Jon

  • Follow up to IPod touch question about kicking back to menu

    What it's doing is while at a site such as Facebook or while reading something on MSN or ESPN, the screen goes black and kicks back to the  icon menu- very annoying- what can I do?

    Have you not transferred all purchases to your computer?  You should.  File>Transfer Purchases
    Everything should be on your computer as you should be syncing regulalry.  If you have not done this, then please do.

  • Follow up to string literal question

    Now that we can see that you (admin) are in fact reading my posts my I repeat my request to have the spammer and their posts deleted.
    http://forum.java.sun.com/profile.jspa?userID=569872
    Thanks so much.

    Thank you for your co-operation.

  • Follow up to my other question...

    Ok, well, I get the 6d00 error both when I try to select my applet and when I try to write to the memory. How can I make sure that the applet is selectable? I can install the applet to the "eeprom" memory file and write to it the first time, but then when I try to select it and write to it in a different script, I get this error. Do I have to change something in my initial script? (By the way, thanks DurangoVa, you've been a great help)

    Of course you can't select it. The 6D 00 means the INS is incorrect.
    To select an applet the ISO7816 standard calls for CLA=00 INS=a4 P1=04 P2=00 LC=(size of CDATA)CDATA=applet AID
    Give that a shot and let me know...
    BTW, Your welcome ! I want to help out the community.

  • Follow-up to my last question/post!

    Along with not being able to copy onto my iPod...I get inot a series of loops regarding "analyzing gapless playback information"....and it goes on...forever.
    Any help?

    Of course you can't select it. The 6D 00 means the INS is incorrect.
    To select an applet the ISO7816 standard calls for CLA=00 INS=a4 P1=04 P2=00 LC=(size of CDATA)CDATA=applet AID
    Give that a shot and let me know...
    BTW, Your welcome ! I want to help out the community.

  • As a follow up from my recent question, I turned off the compatibility mode under all and regular, clicked out ok, ok then then went to itunes and played a song as they said to, and then tried to open the store and STILL CANNOT OPEN STORE, please Help!!!

    Turning off the compatibility mode by deselecting the check box under each thing that it wants did nothing for my access to the itunes store, still a white page with "itunes store" in the middle of it.  This is getting rediculous! Someone with computer smarts please help, I am at the end of my rope!

    Close your iTunes,
    Go to command Prompt -
    (Win 7/Vista) - START/ALL PROGRAMS/ACCESSORIES, right mouse click "Command Prompt", choose "Run as Administrator".
    (Win XP SP2 n above) - START/ALL PROGRAMS/ACCESSORIES/Command Prompt
    In the "Command Prompt" screen, type in
    netsh winsock reset
    Hit "ENTER" key
    Restart your computer.
    If you do get a prompt after restart windows to remap LSP, just click NO.
    Now launch your iTunes and see if it is working now.
    If you are still having these type of problems after trying the winsock reset, refer to this article to identify which software in your system is inserting LSP:
    iTunes 10.5 for Windows: May see performance issues and blank iTunes Store
    http://support.apple.com/kb/TS4123?viewlocale=en_US

  • As a follow up to my previous question about the mail not loading, when I went to see my account to confirm my e-mail, the message was not there, I had to go to my SO S L O W acoount to answer your request

    I just confirmed my e-mail account, but I had to go to my very slow AOL connection since the message you guys sent me was not visible in the body of the page, just the header

    Just to say there ARE lots of Apps on BlackBerry World, so potential BB purchasers should not let that stop them, and some very good free ones, excellent -- BlackBerry Travel is really good, and OsmAnd maps are fabulous, big to download, but when you get it you'll be amazed. Just download a provincial or smaller map to start, because they are huge files and very detailed, but lots of trails and paths are on them... good for park trails and such.

  • A follow up to my last question

    i have a preamp in hopes of getting more power into the audacity editor but im not sure my preamp will work with my amp..is there something in the new
    soundcard thatll help with this?
    coonsanders

    For laughs here an example using reflection.
    First an interface because we're trying to be good O-O coders:
    import javax.swing.*;
    public interface DialogFactory {
        JDialog createDialog();
    }A sample dialog class:
    import javax.swing.*;
    public class SampleDialog extends JDialog {
        private static final long serialVersionUID = 0;
        public SampleDialog(JFrame owner) {
            super(owner, "SampleDialog", true);
    }My reflection factory;
    import java.beans.Expression;
    import javax.swing.*;
    public class ReflectionDialogFactory implements DialogFactory {
        private String classname;
        private JFrame owner;
        public ReflectionDialogFactory(String classname, JFrame owner) {
            this.classname = classname;
            this.owner = owner;
        @Override public  JDialog createDialog() {
            try {
                Class<?> cls = Class.forName(classname);
                Object[] args = {owner};
                Expression expr = new Expression(cls, "new", args);
                return (JDialog) expr.getValue();
            } catch (Exception e) {
                throw new RuntimeException(e);
    }test it:
    import javax.swing.*;
    public class Example {
        public static void main(String[] args) throws Exception {
            JFrame mainframe = new JFrame();
            DialogFactory factory = new ReflectionDialogFactory("SampleDialog", mainframe);
            JDialog dlg = factory.createDialog();
            System.out.println(dlg.getClass());
    }

  • Follow up question on reporting capabilities.

    I just need to follow up to my orignial question to make sure I am making sense.  I wondered if there was intelligence in forms central to query incoming data- ie. pull a report on what email addresses viewed a form.  An analogy of the type of report would be if you wanted to pull a report on incoming calls to your cell phone- for this type of query you would not need to know who your outgoing calls were- you would be trying to determine incoming information.  Thanks again for the help. 

    If you asked for email address in your form then you would know (its in the response table). If you didn't ask for an email then there is no way to know.

  • Follow Up Question/Second User Account... Separate iTunes?

    As a follow up to my last question (Thanks Niel) I'd like to know if I decide not to share my iTunes with them (different tastes, etc) can they have their own separate iTunes accounts (same computer)? If so...
    Do they have to open an iTunes store account? Can I use the same credit card I use for my account?
    Can they just import music off their cd's without opening an store account?
    Anything else I'm not thinking of I might need to know?
    Thanks for all help!

    I'd like to know if I decide not to share my iTunes with them (different tastes, etc) can they have their own separate iTunes accounts (same computer)?
    Yes.
    Easiest way is to create a separate computer login. They will have their own iTunes library.
    Do they have to open an iTunes store account?
    Only if they wish to purchase from the iTunes store.
    Can I use the same credit card I use for my account?
    Yes.
    Can they just import music off their cd's without opening an store account?
    Yes.

Maybe you are looking for

  • Can I choose which attachments download in mail

    Hello first post. I recive a lot of emails with large 1-3mb pictures attached for work. It is eating up my monthy 5gb on air card. Is there a way I choose the pictures to download? I would love to do it like my Iphone does.

  • Error on adding Delivery / AR Invoice with Freight

    Dear Experts, While punching a delivery or A/R invoice with freight values, i get the following error: Cannot add or update this document, rows are missing [freight code missing for line 0] I have assigned a particular tax code to freight and im usin

  • Error while configuring SQL 2012 DB as a Subscriber to a Oracle Publisher.

    When Configuring the Subscription for Oracle as a publisher, we receive the following error message. Msg 18757, Level 16, State 4, Procedure sp_replpostcmd, Line 1 Unable to execute procedure. The database is not published. Execute the procedure in a

  • Fresh Install HCM 9.1 but Links not working. Help please

    Dear All, I'm trying to make a switch from SAP to PeopleSoft. I tought it easier to install PSFT since the number of source to install is much less than SAP. However, I kept getting same error where the links not working no matter which environment I

  • Open a pdf file

    I wanted to write a java program that runs the default pdf reader and reads the specified file String open[] = { "cmd" , "/c", "start", "C:/Documents and Settings/Artemus/My Documents/JAVA Files/INTROSE/Help.pdf"};           try                Proces