The Notes of Sagi Arsyad

EveryMy Paint is Black, Don't ask me to draw Rainbow
See also: Other Geeks@INDC

News

ASP.NET

My Organization

My First Visit to ITB and Bandung

yesterday is my very first visit to bandung, for some project.
my younger brother is also in his First year in ITB at Faculty of Arts, so I can stay at my brother place.

for some reason the project is postponed, so this is my chance to walk hang out with my bro at bandung. 

 

30-08-08_0907 

me

 

30-08-08_0908

My Brother

 

30-08-08_0917

My Brother's Faculty, Arts Faculty

 

30-08-08_1140

the Book manga I bought at Gramedia bandung ( Why so Serious ? )

 

30-08-08_1223

and the last, this Travel is (not) Sponsored by Pizza Hut (too bad C.C. not here)

 

too bad I don't have too much time to taste some bandung food...

 

See You Next Deculture YSOSRS ? - S.A.

Share this post: | | | |
Posted: Aug 31 2008, 02:35 AM by sagi | with 1 comment(s)
Filed under:
Internet Explorer 8 (Beta 2)

Following My Previos Post about IE beta 1, now I will review IE8 beta 2 too

1. Acid 2 test :

image

still not 100% pass Acid 2 test.
but, hey.. at least we got red line on the head there :)

 

2 . Acid 3 test :

image

Hurray... Extra 4 points... (we got 17/100 in Beta 1)

 

3. In Private Mode

image

 

4. Compability Mode / Emulate IE 7

image

it take some times for me to search where is the "Emulate IE 7" button. now they move it to the next to refresh button

image

there also Compabilty View Setting

image

it will give you list of website (that you set) in Compability Mode

 

 

5. Web Suggestion

image

still wandering what is this for ?...

image

not really accurate. I just open Transmission Website once, and some other Webhosting Website a lot of time (hoping it will suggent some Web Hosting Site). but still it suggest me about Bittorent Website

 

6. Better Search Bar 

 image

get the subsite of website content on your search bar

 

7. Inline Search

image

now is moved to the top of the browser

 

 

to Download :

http://www.microsoft.com/windows/internet-explorer/beta/worldwide-sites.aspx?icid=ie8_asdf123

IIX Mirror (Indonesia Only)

http://geeks.netindonesia.net/files/folders/ie8/default.aspx 

 

 

Lasciate ogne speranza, voi ch'intrate - S.A.

Share this post: | | | |
Posted: Aug 28 2008, 04:47 PM by sagi | with 2 comment(s)
Filed under: ,
Open House MIC UI

Hari ini merupakan hari kedua masa pengenalan Universitas bagi mahasiswa baru. semua UKM (termasuk MIC UI) melaksanakan open house untuk memperkenalkan dirinya kepada mahasiswa yang baru.

ini foto-fotonya :

IMAG0132

kresna (MIC Lead) demo beberapa "mainan" anak MIC

 

IMAG0135

The Audience

 

IMAG0140

saya Memperkenalkan Struktur Organisasi MIC UI

 

IMAG0144

Hafiz (MSP) mendemokan WPF apps.

 

Lasciate ogne speranza, voi ch'intrate - S.A.

Share this post: | | | |
Me an My CentOS

just like my previous post, last weekend today I'm trying to build (compile and configure) a webserver on CentOS 5.1 x64, thanks to one of my kaskus friend who Really rent a Core2 Duo server for me to play on it (actually I became a Volunteer to setup a CentOS server for his Website)

and the Mission is done in 11 hours

image 

11 hours ? what took it so long ?

in Centos and Fedora family using yum to install a prebuiled  software (apache, php, etc..) . but, unlike windows, in Linux, to get the best performance on your application, you can't depend on prebuiled software. you must compile it yourselft, and that's what I do.

and of course, when you compile an application you must first install a component or library that it need. for example, to compile PHP, you must first compile / install apache and later compile PHP which also generate apache2handle for php.

good reference (note : you can't just use one of there references)

well.. I've done with CentOS.

so.. what's next ?

Rebuild of Celestial Being

 

 

 Lasciate ogne speranza, voi ch'intrate - S.A.

Share this post: | | | |
Posted: Aug 26 2008, 03:10 AM by sagi | with no comments
Filed under: ,
This Weekend Adventure : CentOS 5.1

having nothing to do this weekend, I decide to explore linux world
and after satisfy enough with debian, I decide to chose CentOS

vpc-centos

my target :

Build / Compile (and configure) Web Server from stratch (not using rpm stuff), including :

lucky me, I am inside University of Indonesia network, so that I can download CentOS ISO and some other package using our Linux Mirror as LAN.

wanna try too ?

if you are in Indonesia use our Mirror :

http://kambing.ui.edu/pub/centos/

or else you can Google your local mirror

 

See You Next Deculture - S.A.

Share this post: | | | |
C++ Compile Winsock Problem

this last one week I got problem compile C++ code from MSDN Library about winsock.

the code :

#include 
#include "winsock2.h"

void main() {
  //----------------------
  // Initialize Winsock
  WSADATA wsaData;
  int iResult = WSAStartup(MAKEWORD(2,2), &wsaData);
  if (iResult != NO_ERROR)
    printf("Error at WSAStartup()\n");

  //----------------------
  // Create a SOCKET for connecting to server
  SOCKET ConnectSocket;
  ConnectSocket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
  if (ConnectSocket == INVALID_SOCKET) {
    printf("Error at socket(): %ld\n", WSAGetLastError());
    WSACleanup();
    return;
  }

  //----------------------
  // The sockaddr_in structure specifies the address family,
  // IP address, and port of the server to be connected to.
  sockaddr_in clientService; 
  clientService.sin_family = AF_INET;
  clientService.sin_addr.s_addr = inet_addr( "127.0.0.1" );
  clientService.sin_port = htons( 27015 );

  //----------------------
  // Connect to server.
  if ( connect( ConnectSocket, (SOCKADDR*) &clientService, sizeof(clientService) ) == SOCKET_ERROR) {
    printf( "Failed to connect.\n" );
    WSACleanup();
    return;
  }

  printf("Connected to server.\n");
  WSACleanup();
  return;
}

but when I compile it using Visual C++ 2008 express it give linker error :

1>------ Build started: Project: soketmenyoket, Configuration: Debug Win32 ------
1>Linking...
1>program.obj : error LNK2019: unresolved external symbol __imp__connect@12 referenced in function _main
1>program.obj : error LNK2019: unresolved external symbol __imp__htons@4 referenced in function _main
1>program.obj : error LNK2019: unresolved external symbol __imp__inet_addr@4 referenced in function _main
1>program.obj : error LNK2019: unresolved external symbol __imp__WSACleanup@0 referenced in function _main
1>program.obj : error LNK2019: unresolved external symbol __imp__WSAGetLastError@0 referenced in function _main
1>program.obj : error LNK2019: unresolved external symbol __imp__socket@12 referenced in function _main
1>program.obj : error LNK2019: unresolved external symbol __imp__WSAStartup@8 referenced in function _main
1>C:\Users\Sagi\Documents\Visual Studio 2008\Projects\soketmenyoket\Debug\soketmenyoket.exe : fatal error LNK1120: 7 unresolved externals
1>Build log was saved at "file://c:\Users\Sagi\Documents\Visual Studio 2008\Projects\soketmenyoket\soketmenyoket\Debug\BuildLog.htm"
1>soketmenyoket - 8 error(s), 0 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

 

what should I do ?
first, you can scream out loud.... (just kidding)

* right click on project name in solution explorer and chose properties

image

* on Configuration Properties > C/C++ > Advance
at properies "Compile As" make sure it set as "Compile as C++ Code (/TP)" even when your code extension is .c

image

* on Configuration Properties > Linker > Input
at properties "Additional Depedencies", type "WS2_32.Lib" (without quotes)

what we do is it give reference to C++ linker to include WS2_32.lib in folder
C:\Program Files\Microsoft SDKs\Windows\v6.1\Lib
note : I using the latest windows SDK

image 

*compile it..

1>------ Build started: Project: soketmenyoket, Configuration: Debug Win32 ------
1>Compiling...
1>program.c
1>Linking...
1>Embedding manifest...
1>Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0
1>Copyright (C) Microsoft Corporation.  All rights reserved.
1>Build log was saved at "file://c:\Users\Sagi\Documents\Visual Studio 2008\Projects\soketmenyoket\soketmenyoket\Debug\BuildLog.htm"
1>soketmenyoket - 0 error(s), 0 warning(s)
========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========

it's compile..

 

See you next Deculture

S.A.

Share this post: | | | |
Posted: Aug 10 2008, 06:05 AM by sagi | with no comments
Filed under: ,
Heroes Gathering

Sabtu [3, Agustus 2008] kemarin, Microsoft Indonesia mengadakan acara "Heroes Gathering",  untuk lengkap nya dapat dilihat di blog nya alex dan Album Fotonya Dondy

tapi yang perlu kita Highlight adalah momen pelepasan Mr.Z oleh para MSP (eh iya... gw bukan MVP maupun MSP lho)..

Zero and Joker

walaupun belum jadi MSP, gw paling menikmati "memutihkan" Zeddy :D

hasilnya, sedikit lagi, Zeddy akan mirip dengan Joker pada the Dark Knight

SONY DSC heath_ledger_as_the_joker_the_dark_knight_movie_image1

so.. Z goo luck with your new life

 

kalau dibandingkan dengan Fasilkom, Mahasiswa selesai sidang Tugas akhir langsung diseret keluar gedung, lalu diborgol di pohon, diceplokin telor, tepung dll...

 

See You Next Deculture Why so Serious ?

S.A.

Share this post: | | | |
Posted: Aug 04 2008, 03:19 PM by sagi | with 3 comment(s)
Filed under:
Expression Web 2 PHP IntelliSense Support

"menyikapi" postingan pak Risman tentang php intelisense support pada Expression Web 2, saya tergoda untuk mecobanya sendiri.

memang suatu hal yang menarik pada Expression Web 2 adalaha adanya php intelisense support. bagi saya yang biasa coding php menggunakan Notepad++ saya menemukan fitur yang sama persis dan cukup membantu, yaitu code coloring. Bukan cuma itu, pada Expression Web 2 ini, suatu fitur yang sering saya temui pada Visual Studio juga ada di sini, yaitu Intelisense untuk php.

Namun berbeda dengan Intelisennse nya Visual Studio, dimana C# compile ditanam (diintegrasikan) dalam Visual Studio nya. pada Expression Web 2 ini, php tidak ditanam pada Expression Web 2 ini, nampaknya yang ada adalah intellisense untuk native php function. Hal ini dikarenakan tidak dilakukannya partial compile Interpret dengan php.exe oleh Expression Web 2 seperti hal nya yang dilakukan Visual Studio untuk men-generate Intelisense ada C#

Tampilan dari Expression Web 2 ini mirip dengan Sharepoint Designer yang juga memiliki fungsional yang hampir sama, yaitu HTML Editor, namun Expression Web 2 ini tidak mensupport Sharepoint tentunya :)

ScreenShots

xweb-php1

intelisense pada php function

xweb-php2

intelisense pada php reserved variable

xweb-php3

php code coloring

 

See you next Deculture - S.A.

Share this post: | | | |
Posted: Jul 19 2008, 08:41 AM by sagi | with 1 comment(s)
Filed under: , ,
C++/Win32 @ MIC UI Day 1

 

Cool event today at MIC UI is the first days of C++/Win32 training series

most of the trainee  is From Physics Department Math and Science Faculty University of Indonesia, and some people from Kontinum and Win32.

today's topic is basic programming and concept of C++. not just to wrote some Hello world, but also some deep concept about how computers works, how memory works., etc.

12-07-08_0948
12-07-08_0949

and this is our trainer, Mr. Risman

12-07-08_1055

 

in break time, of course it need some refreshment. some of us watching first episode of Code Geass using MIC's projector :)

12-07-08_1234

 

See you next Deculture - S.A.

Share this post: | | | |
WCF Series : Pengenalan Windows Communication Foundation (part 1)

karena ada suatu wacana meng-open-source-kan Project Celestial Being di MIC UI, saya jadi memperdalam diri ke WCF :)

 

Salah Satu tantangan membangun aplikasi yang distributed adalah bagaimana antar aplikasi dapat berkomunikasi.
salah satu cara yang populer adalah menggunakan Web Services.
Cara ini cukup populer untuk mengkomunikasikan antar aplikasi di "Server" yang berbeda maupun antara client dan Web Service Server (Web Server).

namun bagaimana jika aplikasi yang akan kita buat berupa desktop application yang saling berkomunikasi ? kita tidak dapat menjamin (dengan kemungkinan 68%™) bahwa masing-masing client terinstall Web Server untuk menghost Web Service.

cara yang paling simple (dan makan tenaga) adalah membuat socket application (Socket Progamming) yang mengkomunikasikan satu client dan client lainnya. namun dengan cara ini sangat melelahkan karena kita harus mendefinisikan format, testing, dsb.

Solusi untuk masalah ini adalah Windows Communication Foundation (WCF)

beberapa tutorial tentang WCF, sudah dijelaskan panjang lebar oleh wely. namun pada konsep dasarnya adalah kita mengeneralkan sebuah aplikasi sebagai host untuk services

pada Web Service, Service berserta web contents di-host / di-handle oleh sebuah aplikasi web server

image

 

pada WCF, hampir sama dengan web services, Service hi-host / di-host pada WCF application kita.

image

melihat struktur yang hampir sama ?

ya. konsep dasar keduanya sama, Web Server maupun WCF Application memliki kesamaan bahwa mereka keduanya adalah aplikasi (executeable) dan keduanya meng-host services.

namun berbeda dengan Web services yang hanya bisa menggunakan transport HTTP, pada WCF kita bisa menggunakan transport lainnya, seperti MSMQ, tcp-net, dll.

jadi WCF ini sangat cocok sebagai API untuk client-to-client communication.

 

bersambung ke bagian 2 (contoh aplikasi) 

 

See you next Deculture - S.A.

Share this post: | | | |
Live ID with PHP Quickstart

langkah-langkah yang perlu anda lakukan untuk mencoba live id quickstart :

 

1. Download XAMPP Lite

kita gunakan xampp karena aplikasi ini telah berisi paket lengkap yang kita butuhkan untuk menjalankan aplikasi ini (juga aplikasi php lainnya).
jangan lupa, anda butuh PHP versi 5.2 ke atas untuk menjalankan Live-ID PHP Quickstart

 

2. Download Windows Live Authentication SDK untuk PHP

http://download.microsoft.com/download/a/3/7/a37d5f8e-8c28-4c92-8d12-12beeb9845e6/webauth-php-1.1.tar.gz

3a. Install XAMPP-Lite dan Live ID for PHP SDK

untuk instalasi XAMPP cukup mudah, anda cukup mengekstract-nya di C:\
untuk instalasi Live ID for PHP SDK juga cukup extract ke C:\xampplite\htdocs\
untuk mempermudah akses, (nama foldernya tidak panjang) rename folder "webauth-php-1.1" menjadi "webauth"

3b. Konfigurasi PHP

jika anda menggunakan paket XAMPP-Lite terbaru (saat ini versi 1.6.6a), paket ini sudah termasuk PHP 5.2.5. namun anda perlu meng-enable beberapa plugin dari PHP yang secara default disabled.
buka xampp-lite php.ini yang terdapat pada C:\xampplite\apache\bin\php.ini
kemudian hapus comment (;) pada beberapa php-plugin berikut :

  • extension=php_dba.dll
  • extension=php_mcrypt.dll
  • extension=php_mhash.dll

 

4. Register Aplikasi pada Windows Live

buka Live ID Application Page : https://msm.live.com/app/default.aspx
lalu pilih link "Register my Application"

 

isi Form tentang aplikasi anda (klik untuk memperbesar gamabr)

image

catatan : pada contoh ini saya menggunakan domain mic13.net dan QuickStart App terinstall pada direktori /webauth/sample
maka pada aplicaiton registration form, pada field "Return Url" diisi http://mic13.net:10000/webauth/sample/webauth-handler.php

setelah pengisian form, ada akan mendapatkan Application ID

 

catatan : pada contoh ini, application ID nya : 00163FFF80012E45

image 

 

5. Konfigurasi Live ID for PHP SDK

buka C:\xampplite\htdocs\webauth\Application-Key.xml  masukkan value sesuai dengan aplikasi anda. misalnya :

 

<windowslivelogin>
  <appid>00163FFF80012E45</appid>
  <secret>sagi-keren-sagi-ganteng</secret>
  <securityalgorithm>wsignin1.0</securityalgorithm>
</windowslivelogin>

 

kemudian buat sebuah file text kosong data.txt pada folder sample. file ini akan menyimpan mapping antara user id dari windows live ke local user id.
kemudian edit setting.php pada variabel $USERDB menjadi $USERDB = './data.txt';

 

6. Test Aplikasi Anda

image

image

 

setelah login pertama kali, anda akan diminta untuk local username untuk dimapping ke local username

image

image

mapping account Live ID dan local username ini tersimpan pada data.txt

 

referensi :

 

see you next Deculture - S.A.

Share this post: | | | |
Posted: Jul 02 2008, 08:33 PM by sagi | with 1 comment(s)
Filed under: ,
.NET Developer Idol Submission : Project Celestial Being

ikut-ikutan Wely untuk mempublish hasil submission untuk Developer Idol, dengan ini dipublish submission Developer Idol versi sagi.

Celestial Being Slide 

nama project ini terinspirasi dari nama salah satu fraksi di Gundam 00, yaitu Celetial Being

Problem Definition

Salah satu masalah yang sering kita temui ketika kita ke sebuah perpustakaan adalah buku yang kita cari tidak terdapat pada perpustakaan itu. dan akan merepotkan bagi kita untuk memeriksa satu-persatu perpustakaan terdekat.
mengapa tidak kita buat saja sebuah aplikasi yang menghubungkan antar perpustakaan agar apabila seorang pengunjung yang datang ke sebuah perpustakaan dan tidak menemukan buku yang dia cari, petugas perpustakaan dapat merekomendasikan si pengunjung untuk datang ke perpustakaan lain yang memiliki buku yang dia cari.

di lain pihak ada kalanya kita sebagai personal dimana memiliki misalnya 10 buku, apabila kita mendefinisikan perpustakaan sebagai pihak yang miliki buku, maka kita juga bisa dianggap sebagai perpustakaan. apalagi jika kita memiliki koleksi buku-buku yang dicari-cari orang.

 

Solution

berangkat dari problem diatas, Celestial Being (CB) hadir sebagai aplikasi yang me-resolve problem diatas.

terinspirasi oleh bittorent sebagai peer-to-peer information (file) sharing, CB menggunakan arsitektur yang mirip dengan bittorent protokol, namun yang di-share bukan file, tapi merupakan informasi kepemilikan buku oleh sebuah perpustakaan.

aplikasi CB ini akan menemukan buku yang anda cari pada network perpustakaan Celestial Being

 

Arsitektur

arch1

terdapat 3 entity :

  • Book Encyclopedia Service
  • Library Tracker
  • Celestial Being Desktop-Client
  • Celestial Being Web-Client (on-plan)

image

How it works ?

  • Secara default sebuah aplikasi Cb bekerja secara offline sebagai aplikasi management perpustakaan dari skala level personal maupun perpustaakaan besar.
  • ada option untuk menshare data detail tentang suatu buku (isbn, judul, author, dll) pada sebuah server yang kita sebut "Book Encyclopedia Service" (BES). salah satu keuntungan adanya BES ini adalah setiap aplikasi CB yang terhubung dengannya dapat berkolaborasi untuk melengkapi "stub datail" dari suatu buku
  • BES juga berguna untuk memberikan detail informasi tentang seuatu buku (GlobalID, isbn, judul, author, dll)

 image image

  • Salah Satu entity lagi pada Celestial Being Network (CBN) adalah "Library Tracker Service" (LTS)
  • LTS berguna mentrack siapa saja yang terhubung pada CBN dan buku-buku yang dimiliki oleh masing-masing perpustakaan
  • sebuah perpustakaan dapat mencari sebuah buku terdapat di perpustakaan mana yang tehubung melalui Celestial being Netowork melalui Library Tracker

image

image image

  • Terakhir, setelah sebuah aplikasi CB mendapatkan informasi adanya buku pada suatu pepustakaan lain pada CB Network, kedua entity dapat saling berkomunikasi secara peer-to-peer untuk menayakan availability suatu buku pada perpustakaan yang dimaksud

 

Celestial Being dibangun menggunakan teknologi

  • Microsoft Visual Studio 2008

VS 2008 ini merupakan tools utama yang digunakan untuk development WCF Apllicaiton (book detail service & library tracker), Windows Form (CB Client) dan Web From (CB Web-Client).  

WCF ini merupakan teknologin inti dari Celestial Being System. WCF digunakan pada komunikasi antara client ke tracker juga komunikasi antar client (peer-to-peer)

  • Microsoft .NET Framework 3.5
    • C# 3.0  : baik client maupun server diprogram menggunakan bahasa pemograman C# 3.0 yang sudah mensupport Linq
    • Linq : implentasi linq dilakukan sebagai untuk pemetaan object to realtional database

 

  • SQL Server 2005 / SQL Express

Sebagai database, di server (book detail service) kita gunakan SQL Server 2005 minimal versi Standard. sedangkan pada client yang tidak memiliki traffice telalu banyak kita gunakan SQL Express

  • ASP.NET 3.5 (Web-Client menggunakan ASPNET Ajax, dsb)

salah satu rencana kedepan adalah membeuat Web-Based Client dari aplikasi celestial being ini. Web-App ini bekerja layaknya desktop app, karena mengimplementasikan WCF dengan contract yang sama dengan desktop client.

 

Bisnis Proses

Celestial Being Network berjalan 24-7, dengan jumlah client yang keluar-masuk network celestial being yang bervariasi.
hal ini dikarenakan bervariasinya jam operasional masing-masing perpustakaan juga para volunteer yang membuka perpustakaan pribadi dengan cara menggunakan CB Client yang connect ke Celestial being network ini, juga memiliki variasi jam online

 

Jenis-Jenis Perpustakan bisa terbagi menjadi

  • Perpustakaan Besar  : Perpustakaan yang memiliki sangat banyak buku, biasanya ini merupakan perpustakaan lokal tingkat kabupaten sampai nasional (dan sejenisnya)
  • Perpustakaan Sedang : Perpustakaan yang miliki cukup banyak buku, namun ruang lingkup costumer nya terbatas, misalnya perpustakaan tingakt Fakultas di UI
  • Perpustakaan Kecil / Personal : merupakan kompulan volunteer maupun study group yang memiliki koleksi buku tidak banyak (sekitar dibawah 100 koleksi) namun bersedia meminjamkan bukunya ke orang lain yang membutuhkan, misalanya : MIC UI, koleksi buku Bpk. Zeddy.. dsb.

 

untuk keanggotaan, setap perpustakaan memiliki membership sistem yang bediri sendiri. seorang pengunjung dapat dengan mudah menjadi member dari suatu perpustakaan terdekat dengan rumahnya hanya dengan menunjukkan kartu identias (KTP, SIM, dsb). data membership disimpan oleh masing-masing perpustakaan pada database dan tidak dishare pada CB Network.

 

Book Encyclopedia Service (BES) merupakan suatu entiry bukan client pada CB Network. BES ini bekerja seperti halnya service pada Amazon.com dimana BES ini menyediakan service (WCF) yang memberikan detail data suatu buku yang akan di-counsume oleh CB client.

Library Tracker Service (LTS) bertindak mengindex kepemilikan buku juga memantau status online dari setiap perpustakaan. hal ini dilakukan dengan cara setiap beberapa detik, client mengirim message status ke LTS Server, client yang terlalu lama idle dianggap sudah offline (seperti bittorent kan ?)

 

ScreenShots

image
List buku yang dimiliki suatu perpustakaan

 

image 
Profile buku

 

image
Book Loan System

 

image '
User Management System

 

Resource

 

See you next Deculture - S.A.

Share this post: | | | |
EALab goes Unified Communication

Bersamaan dengan adanya Event GCoE pada MIC UI, kami para anggota EALab alias "dedemit" MIC UI membuka kembali oprekan Unified Communication. kalau dulu kami cuma main localhost dan komunikasi cuma antara PC dengan Virtual PC, sekarang kami sudah ada sebuah dedicated server untuk UC stuff.

salah satu yang kami banggakan adalah Office Communication. beberapa fitur yang sudah jalan diantaranya

1. Video Conference

IMAG0066

 

2. PC to PC calling

IMAG0067

 

3. Chatting

IMAG0068

cool...

 

S.A.

Share this post: | | | |
MOSS 2007 SP1 in My Vista Machine

inspired by Mr Risman's Article about WSS 3.0 in Vista, tonight I try to install MOSS 2007 in Vista... it works

to Install MOSS on Vista you'll need :

remember to patch your MOSS 2007 with SP1, follow this instruction :

http://mindsharpblogs.com/ben/archive/2007/12/16/3837.aspx

 

Here’s how you install it.

Extract Setup Helper, and run WssVista.msi

image

create directory C:\moss2007

copy "x86" directory from your MOSS 2007 setup CD into C:\moss2007

Extract the SharePoint Server 2007 service pack by executing
'C:\officeserver2007sp1-kb936984-x86-fullfile-en-us.exe /extract:c:\moss2007\x86\Updates'
Agree to the license terms, and the service pack will unpack.

 

open

C:\Program Files\WssOnVista\Setup

execute SetupLauncher.exe

image

it will prompt to select Sharepoint Instalation file,

point it to C:\moss2007\x86\setup.exe

image

After the files have been extracted the WSS setup program will be started.

The current version only supports the advanced installation option so select that one.

image

follow similar for Sharepoint Setup at

http://community.bamboosolutions.com/blogs/bambooteamblog/archive/2008/05/21/how-to-install-windows-sharepoint-services-3-0-sp1-on-vista-x64-x86.aspx

and look...

MOSS 2007 in my Vista Box

image

Share this post: | | | |
ASP.NET Membership

untuk peserta GCoE jakarta (UI) saya sudah upload ebook tentang ASP.NET Membership

http://ealab.net/runes/ASP.NET/ASPNET_Membership.doc

semoga berguna

 

best regards,

S.A.

Share this post: | | | |
More Posts Next page »