Microsoft on HP and Linux, 2002: oh, noes

 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Microsoft on HP and Linux, 2002: oh, noes
# 1  
Old 02-01-2010
Microsoft on HP and Linux, 2002: oh, noes

I have another Comes v. Microsoft exhibit to share with you, Exhibit 9542 [PDF], a November 22, 2002 email to Jim Allchin and Orlando Ayala from Mike Oldham. It has to do with a planned meeting on the 25th between the two companies, on their "Better Together" theme. I think it will explain some things we've sometimes wondered about. One thing is clear. Microsoft was seriously concerned about Linux. And HP? Somewhat flexible, I'd say. Note the part about "the HP plan of record" to "bring a new Linux powered device into the mid-range marketplace" regarding NAS devices (network attached storage devices) and how Microsoft was able to convince them not to do that.

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. UNIX and Linux Applications

Microsoft Dynamics GP - Linux analog?

And if it exists, can it integrate with LDAP (for i know Microsoft Dynamics GP does not integrate with Microsoft Active Directory). (0 Replies)
Discussion started by: Xcislav
0 Replies

2. Shell Programming and Scripting

How to handle Microsoft Excel in Linux Scripting

Hi, I am having a Excel sheets with 4 columns and 50 rows. I need a script which check Date columns in excel sheet and then replace few cells with the random number (based on a date check operator). I then need the excel sheet back to my window system, where is Linux is the remote system. ... (2 Replies)
Discussion started by: envisage
2 Replies

3. What is on Your Mind?

Microsoft servers Vs. Unix/Linux

What you have to say about the following comparison: Compare (2 Replies)
Discussion started by: tayyabq8
2 Replies

4. News, Links, Events and Announcements

Microsoft Is Using Linux To Protect Its Own Web Site

Here is a great news story: http://story.news.yahoo.com/news?tmpl=story&cid=74&e=9&u=/cmp/13100775 (3 Replies)
Discussion started by: Neo
3 Replies

5. News, Links, Events and Announcements

Microsoft CEO Says Faces Tough Challenge from Linux

See this link: http://story.news.yahoo.com/news?tmpl=story&cid=575&e=19&u=/nm/tech_microsoft_memo_dc (0 Replies)
Discussion started by: Neo
0 Replies

6. News, Links, Events and Announcements

META Predicts Microsoft Will Offer Linux Software

Interesting prediction by META: http://story.news.yahoo.com/news?tmpl=story2&cid=569&ncid=738&e=1&u=/nm/20021210/tc_nm/tech_microsoft_linux_dc (1 Reply)
Discussion started by: Neo
1 Replies

7. Windows & DOS: Issues & Discussions

ssh pocket pc 2002

I am looking for a secure shell program for my toshiba e740 which runs pocket pc 2002. I would like something free if posible. I have been looking on Google.com and a few other places but really don't know where to go for pocket pc applications. Could anyone help me? Do you know where I can find a... (1 Reply)
Discussion started by: cire_eria51
1 Replies
Login or Register to Ask a Question
HTTP::Cookies::Microsoft(3)				User Contributed Perl Documentation			       HTTP::Cookies::Microsoft(3)

NAME
HTTP::Cookies::Microsoft - access to Microsoft cookies files SYNOPSIS
use LWP; use HTTP::Cookies::Microsoft; use Win32::TieRegistry(Delimiter => "/"); my $cookies_dir = $Registry-> {"CUser/Software/Microsoft/Windows/CurrentVersion/Explorer/Shell Folders/Cookies"}; $cookie_jar = HTTP::Cookies::Microsoft->new( file => "$cookies_dir\index.dat", 'delayload' => 1, ); my $browser = LWP::UserAgent->new; $browser->cookie_jar( $cookie_jar ); DESCRIPTION
This is a subclass of "HTTP::Cookies" which loads Microsoft Internet Explorer 5.x and 6.x for Windows (MSIE) cookie files. See the documentation for HTTP::Cookies. METHODS
The following methods are provided: $cookie_jar = HTTP::Cookies::Microsoft->new; The constructor takes hash style parameters. In addition to the regular HTTP::Cookies parameters, HTTP::Cookies::Microsoft recognizes the following: delayload: delay loading of cookie data until a request is actually made. This results in faster runtime unless you use most of the cookies since only the domain's cookie data is loaded on demand. CAVEATS
Please note that the code DOESN'T support saving to the MSIE cookie file format. AUTHOR
Johnny Lee <typo_pl@hotmail.com> COPYRIGHT
Copyright 2002 Johnny Lee This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.18.2 2012-02-15 HTTP::Cookies::Microsoft(3)