.:: Jasa Membuat Aplikasi Website,Desktop,Android Order Now..!! | | Order Now..!! Jasa Membuat Project Arduino,Robotic,Print 3D ::.

MUNAS MUGI

0 komentar
MUNAS MUGI yang diadakan pada tanggal 25 Oktober 2010 di Sheraton Bandara, Jakarta, berlangsung dengan penuh kecerian dan kekeluargaan. Dengan moto �Bersiap tinggal landas untuk kemajuan bersama�
Dan saya bersama Pak atha yang di amanahkan untuk pergi ke MUNAS Tahun Ini.




Wassalam..
Suni

openerp and joomla components or php calls

0 komentar
Hi,

i copied the below code from the forum in openERP to Malaysia OpenERP - instant-erp web site , i do this reason is to prevent some good pointer to start something new may loss after changes / upgrade of forum application,

i have lots of good bookmarks of topic in the openobject forum , but after update , i lost all of them and
i think from now on , if i find any good topic ,i will re-post it over here!

ok , let is the forum post

Note that it's not necessary in PHP to specify the type of all arguments given to XML-RPC calls if you use php_xmlrpc_encode() function. In fact, we had something similar to what you did which avoids passing $uid and parameter types in each call:

Code:
$server = new OpenErpConnection($user, $password, $database, $url);
$server->login();
$domain = array(array('ref','=',$code),array('password','=',$_POST['password']));
$ids = $server->search('res.partner', $domain);
$server->read('res.partner', $ids, array('id','name','code') );


We didn't need create, write, unlink or action, but is the code that implements login, search and read, in case it's useful to anyone:

Code:
class OpenErpConnection
{
        public $user;
        public $userId;
        public $password;
        public $database;
        public $url;
        public $connection;

        function __construct($user, $password, $database, $url)
        {
                $this->user = $user;
                $this->password = $password;
                $this->database = $database;
                $this->url = $url;
        }

        function login()
        {
                $msg = new xmlrpcmsg('login');
                $msg->addParam(new xmlrpcval($this->database, "string"));
                $msg->addParam(new xmlrpcval($this->user, "string"));
                $msg->addParam(new xmlrpcval($this->password, "string"));

                $connection = new xmlrpc_client($this->url.'common');
                $resp = $connection->send($msg);
                $val = $resp->value();
                $this->userId = $val->scalarVal();
                return $this->userId;
        }

        function search($relation,$domain)
        {
                $msg = new xmlrpcmsg('execute');
                $msg->addParam(new xmlrpcval($this->database, "string"));
                $msg->addParam(new xmlrpcval($this->userId, "int"));
                $msg->addParam(new xmlrpcval($this->password, "string"));
                $msg->addParam(new xmlrpcval($relation, "string"));
                $msg->addParam(new xmlrpcval("search", "string"));
                $msg->addParam(php_xmlrpc_encode($domain));

                $connection = new xmlrpc_client($this->url.'object');
                $resp = $connection->send($msg);
                //echo "FAULT: " . $resp->faultString();
                $val = $resp->value();

                return php_xmlrpc_decode($val);
        }

        function read($relation,$ids,$fields=array(),$context=array())
        {
                $msg = new xmlrpcmsg('execute');
                $msg->addParam(new xmlrpcval($this->database, "string"));
                $msg->addParam(new xmlrpcval($this->userId, "int"));
                $msg->addParam(new xmlrpcval($this->password, "string"));
                $msg->addParam(new xmlrpcval($relation, "string"));
                $msg->addParam(new xmlrpcval("read", "string"));
                $msg->addParam(php_xmlrpc_encode($ids));
                $msg->addParam(php_xmlrpc_encode($fields));
                $connection = new xmlrpc_client($this->url.'object');
                $resp = $connection->send($msg);
                $val = $resp->value();

                return php_xmlrpc_decode($val);
        }
}

Suni

Web Deploy: IIS6 to IIS7 Migrations + Link Extensions

0 komentar

Recently I was having a conversation with one of Web Deploy (MSDeploy) users and an interesting scenario came up.  He essentially wanted to move his site from IIS 6.0 to IIS 7 and wanted to consider Web Deploy to do this.  In addition he actually was fine with just xCopy-ing the site�s content from IIS6 server to IIS7 server as it was almost 6GB+ in size and trying to create a zip package for it was not most the optimal way of using resources, nevertheless creating a zip package using Web Deploy for just the IIS configuration is what was certainly desirable due to ease of portability & use.

I thought this would be a good opportunity to write a quick note to share with you that migration from IIS 6 to IIS 7 was one of the original scenarios of Web Deploy and so if you are considering the migration from IIS 5.1 to IIS 7 & above then for sure you should consider Web Deploy to help you with it.

Now as you know IIS 6 configuration is based on Metabase and IIS 7 configuration is based on new XML based configuration system so even trying to migrate just the configuration part might be challenging to do manually.  Web Deploy does a fantastic job with this configuration migration and more.

In IIS 7 there is a great UI for you to use to export a Web Site, Web Site or Web Application package from IIS Manager but in IIS 6 there was no way to introduce any UI without servicing IIS 6 which when you consider the impact worldwide is not most ideal thing to do. But anyways the long and short of it is that you will have to use msdeploy.exe command line in IIS 5.1/IIS6 to create a package. When you get the package on to IIS 7+ box then you can of course use the �Import Application� UI on the IIS7 Action pane (right column) even if the package was generated by IIS 5.1 or 6�

One other interesting area to know about is Web Deploy Link Extensions coz they will come very handy when you go about migrating your IIS 6 sites & servers to IIS 7.  Earlier I have talked about how Web Deploy works and what Web Deploy providers are. In addition to Web Deploy providers it is useful to understand the concept of Link Extensions. Well as the name suggests a �Link Extension� is some artifact which Web Deploy can decipher from a parent provider based on some kind of meta data or link which might be present in the parent. Some of the notable link extensions are:

AppPoolExtension - Application Pool configuration which resides outside the contained site configuration, but again the site configuration points to which Application Pool it uses.

CertifacteExtension - Certificates which are external artifacts associated to the site but something which site�s IIS configuration links to.

ContentExtension - Site�s content which resides on the disk but again technically only a pointer to it exists in the site�s IIS configuration.

FrameworkConfigExtension - The root web.config associated with each .NET Framework (stored C:\Windows\Microsoft.NET\Framework\v4.0.30319\Config) which some IT Admins customize and IIS configuration knows which ASP.NET version you are using so technically that can be deciphered too.

The meta point is that these are all the above link extensions can be turned on or off from Web Deploy command line when you are trying to migrate your IIS 5.1/IIS6 sites and servers to IIS 7 and above� There are more link extensions and it is likely that more might be added in the future, you can keep a link to this TechNet article as that is where we might update the information if it changes.

Finally for the scenario that we started talking about in the beginning of this blog the command line to create a package of all of IIS 6 configuration for a Site (with Site id 1) without including the content of the site would be:

MsDeploy.exe -verb:sync -source:metakey=lm/w3svc/1 -disableLink:Content -dest:package=c:\mySite1Package.zip

If you would like to sync up the entire server then the command line would be:

Msdeploy.exe -verb:sync -source:webserver60 -dest:package=c:\mySite1Package.zip -disableLink:Content

Now the generated MsDeploy package can be easily transported to IIS 7 or IIS 7.5 and configuration can be easily replicated without the content being touched in anyway.

Hope this helps,

Vishal

Suni

Cara Reset Canon IP2770 Error 5200

0 komentar
Kali ini kang EKo akan mencoba sharing tentang Cara Reset Canon IP2770 Error 5200. IP 2770 adalah printer baru, dan kang Eko juga baru kali ini nemui error 5200 pada IP2770 ini. Mau tau caranya...?

Indikasi Awal :

Ketika iP2770 ini dinyalakan, printer kelihatan normal dengan LED nyala HIJAU. Tapi setelah diperintah untuk print, maka error 5200 akan muncul, dan LED akan ngeblink bergantian hijau 1x orange 8x ...

Berikut Cara Reset Canon IP2770 Error 5200 :
1. Printer dalam keadaan mati dan kabel listrik terpasang.
2. Tekan tombol RESUME 2 detik
kemudian tekan tombol POWER sampai lampu hijau nyala (saat menekan tombol POWER, ...tombol RESUME jgn dilepas dulu)
3. Kemudian lepas tombol RESUME, tapi jangan lepas tombol POWER.
4. Sambil tombol POWER masih tertekan, tekan tombol RESUME 5 kali. Led akan menyala bergantian orange hijau dengan nyala terakhir orange. (jangan sampai keliru 4x karena printer akan mati total, tapi sifatnya sementara juga) Kemudian ...
5. Lepaskan kedua tombol bersamaan.
6. Led akan blink sebentar kemudian akan nyala HIJAU.

7. Dan Komputer akan mendeteksi hardware baru, abaikan saja...
8. Tekan tombol POWER, maka printer akan mati.
9. Tekan lagi tombol POWER maka printer akan nyala dan ... PRINTER iP2770 sudah siap digunakan.



Cara Lain Reset Canon iP2770 error 5200 :
  1. Hidupkan printer, dan printer akan terlihat normal.
  2. Jalankan printer buat mencetak dokumen atau print test, maka error 5200 akan muncul.
  3. Langsung cabut kabel listriknya tanpa menekan tombol on-off
  4. Buka dan geser catridgenya ke tengah secara manual (tekan kait penguncinya warna putih di belakang head, agar catridge bisa ditarik ke tengah)
  5. Cabut semua cartridge dan biarkan tutupnya tetap terbuka
  6. Hidupkan printer, head akan bergerak menabrak kiri kanan karena tutupnya masih terbuka lalu akan berhenti di tengah.
  7. Pasang kembali cartridge, dan tutup yang benar
  8. Printer anda akan kembali normal. (sumber : http://saptomotok.wordpress.com)

PENGUMUMAN ....!!!!
PROGRAM RESETTER CANON IP 2770 V1074 SUDAH ADA DAN TANPA PASSWORD.....
SILAHKAN KLIK DI SINI


Untuk iP2770 dan MP258 error B200, klik di SINI

Selamat mencoba...
Suni

Beberapa Rahasia dan Shortcut Google Chrome

0 komentar
1. 'incognito' window (Control + Shift + N)
Fitur ini memungkinkan netter untuk browsing secara aman lewat windows browser, karena dengan fitur ini netter tidak akan meninggalkan jejak seperti 'browser & search history' dan cookies. Jadi kalau netter tidak yakin akan situs yang dikunjungi atau tidak ingin orang lain di tempat kerja tahu netter mengunjungi sebuah situs, fitur ini tentu berguna.
2. Alt + Home atau Control + T
Menampilkan semua situs dan bookmark yang pernah dibuka oleh netter sebelumnya dalam bentuk thumbnail. Fitur ini terdapat pada browser Opera dan add ons pada FireFox. Alt + Home untuk membuka situs pada halaman yang sama, sedangkan Control + T pada halaman baru.

3. Control + Shift + T
Membuka kembali tab yang tidak sengaja ditutup oleh netter ketika browsing. Google Chrome bisa mengingat hingga 10 tab yang tidak sengaja ditutup.

4. Control + Tab (Control + Shift + Tab)
Cobalah menggunakan shortcut ini untuk berpindah tab dengan cepat, Control + tab untuk maju dan Control + Shift + Tab untuk mundur. Cara lainnya untuk langsung ke posisi yang tuju secara urut adalah dengan shortcut Control + 1, Control + 2 hingga Control + 9.

5. Membuka Link Situs Dengan Cepat
Untuk membuka link situs dengan cepat, Google Chrome menyediakan fitur yang sama dengan FireFox 3, yaitu dengan klik pada mouse scroll atau netter langsung klik dan drag link ke tab browser.
6. Bookmark Situs Dengan Cepat
Klik tanda bintang pada bagian kiri dari address bar dari browser. Address bar Chrome juga bisa langsung berfungsi sebagai seacrh page yang langsung ke search engine yang kita inginkan

7. Control + B
Hilangkan dan tampilkan Bookmark browser dengan cepat.

8. Control + H
Buka semua situs yang pernah dikunjungi (history) dengan cepat. Pada bagian kanan ada pilihan delete history for this day, kalau netter ingin menghapus history situs yang pernah dikunjungi pada hari tersebut.

9. Control + J
Buka windows download file. Shortcut ini sama seperti pada FireFox

10. Shift + Escape
Buka task manager Google Chrome dengan cepat untuk melihat pemakaian memori dan untuk mematikan tab yang berpotensi membuat browser freeze (hang)
11. aboutlugins & about:crash
Masukkan kata-kata aboutlugins pada address bar untuk melihat plugins apa saja yang terinstall pada Chrome. Dan about:crash untuk melihat tab mana yang membuat Chrome crash, freeze atau hang. Fitur lainnya: about:stats, about:network, about:histograms, about:memory, about:cache, about:dns, about:internets

12. Akses menu pada Chrome
Netter bisa mengakses menu-menu untuk meng-customize ataupun optimize pada bagian kanan pada browser. Pilihlah menu yang ada gambar 'Kunci Inggris' lalu pilihlah option. Di dalamnya terdapat banyak pilihan seperti menjadikan Chrome sebagai default browser, mengganti default Search, mengganti bahasa, dan lain sebagainya

Semoga Bermanfaat.
Sumber : di Forum sebelah
Suni

Trick buat memerangi Keylogger

0 komentar
1.Trick Pertama
Buka Start Menu, Klik Run, Tulis : osk.exe

Akan muncul tampilan Keyboard, Itulah Keyboard Virtual. Ada beberapa Keylogger yang nggak bisa merekam Ketikkan dari Keyboard Virtual (osk.exe). Namun ada juga Keylogger yang bisa merekam hentakan dari tuts-tuts Keyboard Virtual ini, dan ada baiknya baca Trick Kedua.

2.Trick Kedua (Dari PC Mild)
Misalnya DS'ers semua pengen nulis Password, Passwordnya : t4bl0id. Untuk mengelabuhinya ketikkan dulu sembarang karakter, misalnya : t9s2d. Lalu taruh kursor di antara t dan 9, sorot 9 dan s, lalu ketikkan 4bl. Lanjutkan dengan menyorot 2, lalu ketikkan 0i. Maka akan menghasilkan kata t4bl0id, dan keylogger akan error mencatatnya.

3.Trick Ketiga
Trick Ketiga sama dengan Trick Pertama, Tapi menggunakan Software dengan nama : Neo's SafeKeys 2008. Download & Install aplikasinya (Cari di google).

Jalankan, Pilih Opsi Standard Entry, lalu ketikkan Kata yang ingin disembunyikan, misalnya : Username dan Password. Ketik dengan menggunakan mouse (Klik Keyboard Virtualnya), Jangan pakai Keyboard! Lalu, Sorot dan Drag N Drop ke lokasi dimana kata tersebut ingin ditaruh.
Jika Drag N Drop gk berhasil, maka aktfikan Injection Mode (Icon : Suntikan), lalu Drag N Drop ke tempat tujuan.

4.Trick Keempat
Trick Keempat menggunakan Aplikasi Anti-Keylogger. Download & Install I Hate Keyloggers (Cari Di Google) aplikasinya. Installnya Next Next ajah. Simpel koq aplikasinya, gak perlu paham tentang Keylogger juga bisa menggunakan Aplikasi ini.
Selain itu Install juga Aplikasi yang bernama KL-Detector.
Dan Install juga Zemana AntiLogger.

5.Trick Kelima
Mozilla Firefox emang jadi Browser Numero Uno (Number 1#), kalo browsing Facebook kebanyakan orang pake Firefox. Nah di Firefox ini ada Plugins (Add-Ons) yang bernama KeyScrambler yang fungsinya mengenkripsi apa yang kita ketik ke browser, misalnya : Username & Password (Jadi gak kebaca sama si Keylogger).

6.Trick Keenam
Sebagai Pelengkap keamanan, Anti-Virus emang perlu di Install. Ada beberapa Anti-Virus (Gak semuanya), yang bisa ngedetek KeyLogger. Contoh : Kaspersky Internet Security, AVG Internet Security & Avira (Anti-Virus Payung)

Link-Link Software :

1.Neo's Safe Keys 2008 : http://www.aplin.com.au/neos-safekeys-2008
2.I Hate Keyloggers : http://dewasoft.com/privacy/i-hate-keyloggers.zip
3.KL-Detector : http://dewasoft.com/privacy/kldetector13.zip
4.Zemana Anti-Logger : http://www.zemana.com/Download.aspx
5.Key Scrambler (Firefox) : https://addons.mozilla.org/en-US/firefox/addon/3383/

Jangan terlalu percaya sama Deep Freeze, bisa jadi Deep Freeze di Warnet anda didisable oleh pengguna Keylogger, Kemudian Keyloggernya diinstall dan Deep Freezenya dinyalakan kembali...

sumber : dapet dari forum
Suni

Advanced Modeling - Reporting From PostgreSQL Views

0 komentar

Taken from OpenERP wiki page , just in case you like me , may missed it!...

Open ERP objects can be created from `PostgreSQL views. The technique is as follows :
  1. Declare your _columns dictionary. All fields must have the flag readonly=True.
  2. Specify the parameter _auto=False to the Open ERP object, so no table corresponding to the _columns dictionnary is created automatically.
  3. Add a method init(self, cr) that creates a `PostgreSQL View matching the fields declared in _columns.
Example The object report_crm_case_user follows this model.
report_crm_case_user(osv.osv):
_name = "report.crm.case.user"
_description = "Cases by user and section"
_auto = False
_columns = {
'name': fields.date('Month', readonly=True),
'user_id':fields.many2one('res.users', 'User', 
                readonly=True, relate=True),
'section_id':fields.many2one('crm.case.section', 
               'Section', readonly=True, relate=True),
'amount_revenue': fields.float('Est.Revenue', readonly=True),
'amount_costs': fields.float('Est.Cost', readonly=True),
'amount_revenue_prob': fields.float('Est. Rev*Prob.', readonly=True),
'nbr': fields.integer('# of Cases', readonly=True),
'probability': fields.float('Avg. Probability', readonly=True),
'state': fields.selection(AVAILABLE_STATES, 'State', 
               size=16, readonly=True),
'delay_close': fields.integer('Delay to close', readonly=True),
}
_order = 'name desc, user_id, section_id'

def init(self, cr):
cr.execute("""
create or replace view report_crm_case_user as (
select
min(c.id) as id,
substring(c.create_date for 7)||'-01' as name,
c.state,
c.user_id,
c.section_id,
count(*) as nbr,
sum(planned_revenue) as amount_revenue,
sum(planned_cost) as amount_costs,
sum(planned_revenue*probability)::decimal(16,2) as 
                              amount_revenue_prob,
avg(probability)::decimal(16,2) as probability,
to_char(avg(date_closed-c.create_date), 
                              'DD"d" `HH24:MI:SS') as delay_close
from
crm_case c
group by substring(c.create_date for 7), 
                              c.state, c.user_id, c.section_id
)""")
report_crm_case_user()
Suni

Back Up Database Ms Access

0 komentar
Dalam Aplikasi database salah satu hal terpenting adalah keamanan data. Kali ini saya akan memberikan link download sample project bagaimana membackup database Miscrosoft Access.

Sebenarnya backup dapat dilakukan dengan cara yang sederhana yaitu dengan mengcopy file yang bersangkutan ke lokasi lain atau dengan nama lain. kurang lebih seperti ini codenya :
Filecopy file_asal, file_tujuan
contoh : Filecopy c:\Data\db1.mdb, d:\db1.mdb

Code diatas akan membackup database di path "c:\Data\db1.mdb", ke path "d:\db1.mdb"

Sample project yang saya upload ini menggunakan cara yang sedikit berbeda. Masih menggunakan filecopy, tetapi ada tambahan dengan syntax SQL (SELECT INTO bla bla bla) untuk membackup data tabel demi tabel satu persatu, jadi nanti akan muncul progress backupnya. Tambah bingung ??? he3x ...


Link Download :


http://www.ziddu.com/download/11718370/backupdb.rar.html
Suni

Add & View Picture (Image Type) Using LINQ

0 komentar

Masih pada ingat dengan postingan saya mengenai insert dan view gambar pada SQL Server untuk field type nya adalah image, (jika belum silahkan baca dulu disini). Untuk tulisan ini saya akan memberikan sebuah tips atau cara bagaimana melakukan hal tersebut dengan menggunakan LINQ to SQL. Jika belum mengerti tentang LINQ bisa membaca artikelnya saya disini. Pada tulisan ini saya akan memberikan contoh bagaimana sintaks untuk melakukan insert dan view gambar untuk field yang bertipe image dengan menggunakan LINQ. Disini saya menggunakan database Northwind dan table Employees dengan field Photo. 
Sintaks Insert Picture
 Dim ms As New System.IO.MemoryStream()  
PicBox.Image.Save(ms, PicBox.Image.RawFormat)
Dim CPic() As Byte = ms.GetBuffer
ms.Close()
'convert byte ke binary
Dim fileBinary As New System.Data.Linq.Binary(CPic)
Dim dc As New TestDataContext
Dim emp As New Employee With {.LastName = txtFirst.Text, .FirstName = txtLast.Text,
.Photo = fileBinary}
dc.Employees.InsertOnSubmit(emp)
dc.SubmitChanges()

Sintaks Insert Picture
 Dim dc As New TestDataContext  
Dim empid As String
empid = InputBox("Masukkan Employee ID")
PicBox.Image = Image.FromStream(New IO.MemoryStream(dc.Employees.Single(Function(p) _
p.EmployeeID = empid).Photo.ToArray))


Project dari contoh diatas dapat di download disini
Wassalam
Suni

Open Source: Free as in Freedom, not free as in Free service

0 komentar
From the OpenERP

If you look at different open source companies, there are mainly two business models for an open source publisher:
  1. Releasing a light and open source version of the product and selling closed-source modules with additional features. Some examples are SugarCRM or Compiere.
  2. Having 2 versions: an open source version and an "Enterprise Edition" that differ in some areas: Alfresco releases bugfixes only in the enterprise edition, MySQL has editions with different performances, Magento has more features in the Enterprise Edition.
At OpenERP, we believe in open source, and we think there is a third option: release everything we do for free.
(E-global , Malaysia OpenERP Silver partner support this idea and we would like to call for local Malaysian to build a pool of trustworthy community so that we can adopt the vision of openERP commitment in open source software and to provide one of the best ERP services around in Malaysia and Asean)




Suni

8 Langkah Mendepak Virus Pengeksploitasi Celah Windows

0 komentar
Kehadiran virus W32/VBWorm.BEUA atau yang lebih dikenal sebagai virus shortcut yang mengeksploitasi celah keamanan terbilang cukup meresahkan. Sebab, meski berlabel virus lokal, ia tidak hanya memanfaatkan keteledoran pengguna. Namun telah 'naik kelas' dengan menerobos celah keamanan Windows.

Simak 8 langkah praktis untuk mendepak virus yang mampu mengubah folder yang ada di dalam USB flash disk menjadi shortcut tersebut, menurut Adang Jauhar Taufik, analis dari Vaksincom:

1. Nonaktifkan 'System Restore' untuk sementara selama proses pembersihan.

2. Putuskan komputer yang akan dibersihkan dari jaringan.

3. Matikan proses virus yang aktif di memori dengan menggunakan tools 'Ice Sword'. Setelah tools tersebut terinstal, pilih file yang mempunyai icon 'Microsoft Visual Basic Project' kemudian klik 'Terminate Process'. Silahkan download tools tersebut di http://icesword.en.softonic.com/

4. Hapus registri yang sudah dibuat oleh virus dengan cara:
-. Klik menu [Start]
-. Klik [Run]
-. Ketik REGEDIT.exe, kemudian klik tombol [OK]
-. Pada aplikasi Registry Editor, telusuri key [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run]
-. Kemudian hapus key yang mempunyai data [C:\Document and Settings\%user%].

5. Disable autoplay/autorun Windows. Copy script di bawah ini pada program notepad kemudian simpan dengan nama REPAIR.INF, install file tersebut dengan cara: Klik kanan REPAIR.INF --> INSTALL


[Version]

Signature="$Chicago$"

Provider=Vaksincom



[DefaultInstall]

AddReg=UnhookRegKey

DelReg=del



[UnhookRegKey]

HKLM, Software\CLASSES\batfile\shell\open\command,,,"""%1"" %*"

HKLM, Software\CLASSES\comfile\shell\open\command,,,"""%1"" %*"

HKLM, Software\CLASSES\exefile\shell\open\command,,,"""%1"" %*"

HKLM, Software\CLASSES\piffile\shell\open\command,,,"""%1"" %*"

HKLM, Software\CLASSES\regfile\shell\open\command,,,"regedit.exe "%1""

HKLM, Software\CLASSES\scrfile\shell\open\command,,,"""%1"" %*"

HKCU, Software\Microsoft\Windows\CurrentVersion\Policies\Explorer, NoDriveTypeAutoRun,0x000000ff,255

HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion\policies\Explorer, NoDriveTypeAutoRun,0x000000ff,255

6. Hapus File induk dan file duplikat yang dibuat oleh virus termasuk di flash disk. Untuk mempercepat proses pencarian, Anda dapat menggunakan fungsi 'Search'. Sebelum melakukan pencarian sebaiknya tampilkan semua file yang tersembunyi dengan mengubah pada setting Folder Options.

Jangan sampai terjadi kesalahan pada saat menghapus file induk maupun file duplikat yang telah dibuat oleh virus. Lalu hapus file induk virus yang mempunyai ciri-ciri:

-. Icon 'Microsoft Visual Basic Project'.
-. Ukuran File 128 KB (untuk varian lain akan mempunyai ukuran yang bervariasi).
-. Ekstesi file '.EXE' atau '.SCR'.
-. Type file 'Application' atau 'Screen Saver'.

Kemudian hapus File duplikat shortcut yang mempunyai ciri-ciri:

>. Icon Folder atau icon
>. Ekstensi .LNK
>. Type File 'Shortcut'
>. Ukuran file 1 KB

Hapus juga file yang .DLL (contoh: ert.dll) dan file Autorun.inf di flash disk atau folder yang di-share. Sementara untuk menghindari virus tersebut aktif kembali, hapus file induk yang mempunyai ekstensi EXE atau SCR terlebih dahulu baru kemudian hapus file Shortcut (.LNK).

7. Tampilkan kembali folder yang telah disembunyikan oleh virus. Untuk mempercepat proses tersebut, silahkan download tools UnHide File and Folder di http://www.flashshare.com/bfu/download.html.

Setelah diinstall, pilih direktori [C:\Documents and settings] dan folder yang ada di flash disk dengan cara menggeser ke kolom yang sudah tersedia. Pada menu [Attributes] kosongkan semua pilihan yang ada, kemudian klik tombol [Change Attributes].

8. Install security patch 'Microsoft Windows Shell shortcut handling remote code execution vulnerability-MS10-046'. Silakan download security patch tersebut di http://www.microsoft.com/technet/security/Bulletin/MS10-046.mspx


Seperti biasa, untuk pembersihan secara optimal dan menecegah infeksi ulang, sebaiknya install dan scan dengan antivirus yang up-to-date dan sudah dapat mendeteksi virus ini dengan baik.
Suni

3 Situs Andalan untuk Mencari Teks Film

0 komentar
Koleksi film dalam bentuk digital yang disimpan di hardisk kadang tak selalu dilengkapi dengan subtitle yang diinginkan. Padahal, subtitle bisa berguna untuk menikmati film lebih lanjut, mulai dari memahami alur cerita hingga menangkap kata-kata sulit yang mungkin diucapkan pemainnya.

Untungnya, ada situs-situs internet yang menyediakan subtitle untuk di-download kolektor film. Berikut adalah tiga di antaranya:


AnySubs.com

AnySubs menyediakan file teks untuk film dengan format DivX secara gratis. Di situs ini pengguna bisa melihat-lihat koleksi subtitle yang ada berdasarkan urut abjad maupun melihat Top 100 judul yang paling banyak di-download.

Kebanyakan file di AnySubs menggunakan format SRT. Situs itu menyediakan pencarian subtitle berbagai bahasa, termasuk Bahasa Indonesia. Namun koleksinya akan tergantung dari keaktifan komunitas karena kebanyakan subtitle yang ada disumbangkan oleh komunitas.

Subs.to

Tampilan awal Subs.to menyerupai Google, sehingga mengesankan dirinya sebagai mesin cari subtitle. Selain lewat pencarian ala Google itu, pengguna juga bisa melihat Search Cloud untuk melihat kata kunci yang populer.

Beberapa informasi penting ditampilkan sebelum mengunduh subtitle, termasuk ukuran file, format subtitle (srt atau sub) dan tingkat frames per second yang digunakan.

Subtitles.com.br

Dibandingkan dua di atas, Subtitles.com.br adalah yang paling lengkap. Pertama, ia menyediakan cukup banyak pilihan file, mulai dari sub, srt hingga txt.

Kedua, Subtitles.com.br menyediakan preview subtitle yang akan di-download. Ini tentunya memudahkan pengguna untuk melihat dulu, apakah kualitas teks yang ditampilkan cukup baik atau tidak.

Nah, yang ketiga, Subtitles.com.br menyediakan sebuah piranti lunak gratisan bernama Subtitles 1.1. Lewat software untuk Windows ini, pengguna bisa klik kanan pada file film yang diinginkan untuk mencari subtitle yang sesuai.

detikinet
Suni

Otomatis Mengatur Kecerahan (brightness) Monitor dengan f.lux

0 komentar
ada kesehatan mata kita dan kenyamanan bekerja di depan komputer. Sebelumnya saya pernah menulis tentang menggunakan Aturan 20-20-20 ketika bekerja di depan komputer. Kali ini saya akan membahas tentang software gratis yang dapat digunakan untuk mengatur kecerahan monitor secara otomatis.

Pada siang hari, dengan tingkat kecerahan monitor yang sudah ada (standard) biasanya memang sudah cocok dengan kondisi di ruangan teresbut. Tetapi bagaimana jika kita bekerja di depan komputer pada petang, dini hari atau tengah malam ? Kecerahan monitor kadang tidak pas, sehingga selain efek kesehatan mata, kelelahan mata, juga berpengaruh pada penggunaan listrik (terutama pada laptop).

Dengan alasan tersebut, bisa saja kita mengatur manual kecerahan monitor kita, tetapi jika ini terus terulang setiap hari, tentu lumayan merepotkan. Oleh karena itu, dibuatlah software F.lux. F.lux merupakan software gratis yang secara otomatis mengatur tingkat kecerahan monitor, baik untuk monitor LCD, Laptop atau monitor biasa (CRT). Biasanya pada siang hari tampilannya cerah dan semakin menurun menjelang malam, sampai malam hari. Mulai pagi kecerahan akan kembali naik.








Pengaturan ini disesuaikan dengan memasukkan koordinat wilayah kita. Sehingga akurasi akan lebih terjamin. Jika kita kurang cocok dengan pengaturan bawaan, kita juga bisa mengatur ulang tingkat kecerahan berdasarkan jam atau waktu di daerah kita.
Koordinat Lokasi

Untuk menentukan koordinat lokasi kita, F.lux menyediakan tools secara online yang bisa digunakan. Kunjungi alamat website: Flux: where Am I?, kemudian isikan kota tempat kita berada ( bisa ditambah dengan Indonesia, misalnya masukkan : Yogyakarta, indonesia). Selanjutnya copy koordinat yang tampil dan paste (isikan) di pengaturan lokasi F.lux. dan Klik OK.
















Tingkat kecerahan monitor (brightness) sangat berpengaruh p
Berikut lokasi koordinat beberpa kota di Indonesia :

* Yogyakarta -7.797224, 110.368797
* Jakarta -6.211544, 106.845172
* Surabaya -7.287243, 112.739048
* Semarang -6.971428, 110.425499
* Bandung -6.91243, 107.606903
* Bali -8.4095178, 115.188916
* Makasar -5.143662, 119.426339
* Riau 0.8868263, 101.7068294
* Kalimantan Timur 1.6406296, 116.419389
* Samarinda -0.4373359, 117.247496
* Banjarmasin -3.328499, 114.589203
* Pontianak 0.1429273, 109.2573812
* Papua, Indonesia -4.269928, 138.0803529
* Aceh 5.3512726, 95.5623695
* Mataram, NTB -8.581824, 116.106832
* Kendari -3.957962, 122.5713329
* Sumatra Selatan -3.3194374, 103.914399
* Lampung -4.5585849, 105.4068079
* Maluku -3.2384616, 130.1452734
* Ambon -3.7068937, 128.1626039

Selain dengan tools online tersebut, jika anda menggunakan program Shollu, bisa juga menggunakan informasi koordinat lokasi yang ada di program shollu. Buka saja program shollu, Pada menu Waktu Sholat, klik tombol Pilih Area, selanjutnya pilih negara dan kota yang sesuai dengan lokasi kita. Disana akan ditampilkan garis Lintang dan Garis Bujur yang bisa di masukkan di pengaturan lokasi program F.lux.
Download F.lux

Bagusnya software ini adalah tersedia di berbagai platform, baik Windows, Linux ataupun Mac OS X. Ukuran download untuk windows hanya sekitar 546 KB sehingga sangat kecil. Langsung saja kunjungi Halaman Download F.lux ( ebsoft )
Suni

openERP's vision and E-global mission

0 komentar

Vision

Some may look at the Business Application market as a mature market dominated by a few large key players, with no new business opportunities, but this would be ignoring the market reality:
So many customers are frustrated with their experience with existing vendors. So many companies around the world need to have access to business applications but cannot afford them (E-global : it is especially true for Malaysia SME or most SME in ASEAN region , as we are a development country , we feel the pressure of globalization , SME do know that ICT is important to bring competency for glowing their businesses into this global market but either many of them engage team that are not competence enough to do the job which got burn themselves or simply some SME cannot even get themselves started because of budget , here we are , OpenERP Malaysia  we are committed to help !  )

At OpenERP we believe that business applications should not be a luxury. That any company, in any country, should be able to afford the best tools to expand their businesses professionally.  In order to do so, we need to break the existing rules of the ERPs and the Business Applications market. ( E-global :Most businesses in this region are still very skeptical towards whether Open source project can professionally serve them well than most proprietary software, well looking at Andriod PDA , Ubuntu Desktop , Centos Server just to name a few with their increasing users base , do this tell you something about the power of open source project , in fact in E-global , we can mostly survive without any proprietary software so just like OpenERP has the vision we , E-global too has the mission to help carry out this vision! And we invite you test this great platform , OpenERP   )

  • Customers should spend their budget wisely: We believe that customers should use their budget smartly and invest in customizing  the application to their specific needs, rather than paying expensive license fees. Open Source allows this. Open source is a disruptive model because it creates more value for the customers. ( E-global Malaysia as an opensource supporter , users and service provider ourselves for a long time we can't agreed less with this , how about you ? )
  • Software is recyclable: For decades customers have developed applications which remained specific to their own needs and in the end proved extremely expensive to maintain. Open Source means that customers can benefit from past developments of other companies. Also  by contributing to the evolution of the software, the users will enjoy the guarantee that their development will be included in future versions of the software. ( E-global :From a windows development to web/php development , E-global is always looking for a very good object orientated framework , we are evolving in our win/php platform with good framework ,until we came across open-object a few years back , we tried it and I have finally came to conclusion that , decision made 3 years ago is probably the best decision i ever made for E-global development platform , so are you interested to try , in fact when you interested in totally re-writing the software from scratch , we can help too!   )
  • Levering from the Web: Most ERP and Business Applications vendors do not leverage from the benefits of Web.  At OpenERP we believe that  the fact  we entered this market recently is an asset.  We can build a new breed of business applications, more modular, more customer friendly, fully web based, that others can�t, due to the heritage of their legacy systems.
  • Engaging with customers differently: Open source also allows us to engage with our customers differently. Since there is no licensing cost, any potential customer can download the software, test it and use it if it meets its needs. We have no need for an expensive sales force to promote the product.  We just need to make the best product and make it available to customers
At OpenERP we believe that we can break many barriers in this industry. We make our software available to many companies who could otherwise not afford to pay for expensive business applications license fees. We allow customers to use their money smartly and tailor the software to their individual needs. We leverage from our customer base to enrich the software and finally we eradicate any lock-in to allow our customer to use and even drop our software freely. ( We ,E-global are excited and can't wait to see OpenERP excel in Malaysia local market to help many SME , so do come back here or get in touch with us so that we can help you! )



Suni

Cara Mudah Download All Driver Komputer dan Laptop

0 komentar
Kali ini Kang EKo akan mencoba sharing tentang Cara Mudah Download All Driver Komputer dan Laptop. Sebenarnya kemarin kang Eko sudah pernah posting, tapi posting kemarin menggunakan software untuk mencari drivernya. Sedangkan untuk cara download driver kali ini tidak menggunakan software tapi menggunakan website www.devid.info. Mau tahu caranya ....?

Cara Mudah Download All Driver Komputer dan Laptop.
Cara download driver yg kang Eko bahas kali ini boleh dibilang sangat mudah dan sangat komplet serta sangat cepat dalam pencarian drivernya, baik itu driver VGA, chipset, Soundcard, Card Reader, USB device, Modem, Lancard, Wifi, Driver Laptop, dan lain-lain.

Berikut Cara Mudah Download All Driver Komputer dan Laptop :

1. Klik kanan My Computer pilih Properties. Kalau di desktop tidak ada My Computer, buka Windows Explorer dan klik kanan pada My Computer pilih Properties.




2. Klik pada Hardware trus pilih Device Manager




3. Setelah Device Manager terbuka, pilih salah satu driver yg belum terpasang, yaitu ditandai dengan tanda tanya kuning. Kemudian klik kanan pada salah satunya misalkan Ethernet Controller (Lan Card) pilih Properties.




4. Setelah itu, muncul jendela properties dari device tersebut. Pilih tab Details trus Klik ID device. Kemudian copy ID dari device tersebut dengan menekan Ctrl + C.




5. Kemudian, buka situs www.devid.info, trus paste ID device yang sudah di copy tadi pada kotak �Enter Device Id�. Trus klik �OK�.




6. Selanjutnya akan muncul beberapa pilihan driver yang kita inginkan. Kemudian pilih salah satu. Trus klik Download / Unduh.



7. Kemudian download drivernya dengan nge klik driver yg ada di baris "FILE"




Demikian bahasan kali tentang Cara Mudah Download All Driver Komputer dan Laptop.
Selamat Mencoba dan semoga berhasil .....


Suni

How to mount Windows VHD, ISO, CUE, BIN, NRG, CCD, MDS and MDF Image free

0 komentar

How to mount Windows VHD, ISO, CUE, BIN, NRG, CCD, MDS and MDF Image free

Few Days back I was in need of a tool that can mount my VHD file to my computer and to get data from my damaged Virtual hard disk. I searched for that and found only paid solution for this that were also not good enough for me.

In this continuous search I found Gizmo Drive. This tool can easily mound Windows Virtual Hard disk other than all other popular images for data. Best thing with this tool is its completely free and no virus or spam is there in it.

You can easily download it from www.araina.com

For mounting your Virtual Hard disk you just have to mount it using general mount method using Gizmo central too.

I hope it was useful for you and it solved your problem

Thanks for being here

AP Dubey

Suni

OpenERP 5.0.14 Announced

0 komentar
Just in case you missed the change log of openERP 5.0.14 , E-global , are hoping we can spread the news of the updates especially on many accounting modules , we E-global Malaysia openERP first silver partner are in the midst of testing and localizing the Financial / accounting modules and make in more look more friendlier for Locals to adopt OpenERP , here are the announcement ... 
OpenERP 5.0.14 Announced

September 4, 2010 - 06:51 � David Bucknell

* finances |
* openerp


We have the pleasure to announce a new revision of OpenERP 5.0.

The previous version 5.0.13 of OpenERP had a problem with the version of Python 2.4 and 2.5.

This release contains the bug fixes of 5.0.13 and one important security fix which you can find in this brief summary.
In this version we have back-ported the safe_eval function from the trunk version.
But if you want to find more details you can look at the Changelogs [1]

The Windows Installers will be made available as soon as possible.

The translations have been updated


Server:
========

* Bugfixes
----------

* Use the safe_eval function from trunk
* Don't marshal None in XML-RPC
* Correct the field.related behavior at write()
* Fix a problem with the "Resynchronise Terms" wizard
* Fix a bug in the read function if the field is a function field or a many2one and store=True
* Fix the RNG, the filter attribute was missing
* Backport the safe_eval function from the trunk version of OpenERP
* Better Logging, display database name in the logger
* Add the @logged decorator also log exceptions
* Add the @traceback decorator that log the traceback at call


Bugfixes (addons)
-----------------

* Use the safe_eval function from trunk
* account : Improve the calculation of general ledger
* account : General Journal and Central Journal Reports Corrected & Optimized
* account : General Ledger report improved
* account : Read Access for Fiscalyear given to Partner Manager
* account : Pay Invoice Wizard in foreign currency
* account : Use the right journal and period ids for the General Journal Report
* account : added notification on absence of invoice sequence number
* account : Bank statement should allow opening entries to reconcile disrespecting jornal
* account : Overdue message wizard corrected
* account : Partner Balance report filter corrected
* account : Unpaid invoices should not include proforma type of invoices
* account : fixed _search_amount() ethod to allow operators like <, >, =, !=, in and not in
* account : sequences in fiscal years should be restricted to the same type.
* account_date_check : Corrections in check_date constraint of move line
* account_followup : Report corrected by putting formatLang for maturity date
* crm: fixes send reminder.
* crm_configuration : Stage should be set to the basic stage of opportunity when leads are converted to opportunity.
* hr_timesheet : Onchange of user was counting changed user into context
* hr_timesheet_sheet : timesheet should only be confirmed when no. of sign in entries equal to sign out
* l10n_be : VAT Declaration wizard corrected
* l10n_be : Wizard of VAT intra corrected
* l10n_be : VAT Listing Wizard corrected
* l10n_ch : Correction on making payment with DTA
* mrp : Cancellation of procurement allowed if it has no moves attached
* mrp: Attribute the right destination location
* mrp_repair : Creation of invoices corrected from repairs with fees
* purchase : Translations corrected
* purchase : Report should show Partner of destination address
* purchase : Calculation of minimum planned date should not fail when there is no PO Line.
* report_intrastat : Correction in PSQL View creation
* sale : Cancellation of Order should be allowed by un-linking the Pickings to it
* sale : Correction on advance invoice wizard
* sale : Included customer reference in advance invoice
* sale : Make Invoice button set to invisible when invoiced.
* sale_crm : Case should be created with the user which is supplied from the wizard,not the current logged in user
* stock : Chained picking should generate same picking for moves
* stock : Manually created stock moves should confirm without fail
* stock : The return picking wizard has been improved
* stock: Use the standard price for the default price in the wizard of a partial picking
* wiki : Corrections for history revision differences,_rec_name corrected


You will find the Windows Installers and the tarball archives on OpenERP download page.


Suni

OpenERP at a glance

0 komentar

e-global, we as Malaysia first official local silver partner for OpenERP would like to share our thoughts on the presentation that of the Topic "At a glance" found in the openERP site.


At a glance

Open Source: OpenERP is committed to Open Source Business Model. The software is published under the AGPL licence. ( in E-global openERP, yes , is opensource , but a lot of people think open source = free , but the truth is , yes the software , if you maintain yourself , DIY then is free , but when you need professional services , you still need to pay the consultation fee, system study services , customization services and all cost related to implementating ERP over in your company , these cost are not free , as Malaysian said "we need to cari Makan la" , which means we as software developer need to pay our bills as well, pay our developers and the miss conception of open source that bring to the market that is that open source is free so the consultation fee or implementation fee need to be low too, I hope E-global in Malaysia can bring OpenERP as although is free,it does not means the services have to be low as well instead the services need to be qualify and competence , all we have to do is to make sure you can save a BIG LUM SUM for the prioprietary software which you may be paying but just as OpenERP is committed to fulfill its Vision, we E-global Malaysia are committed to fulfilled our mission to provide a qualify,competence support and implementation services for OpenERP in Malaysia .   )

Complete :  OpenERP is a comprehensive suite of business applications including Sales, CRM, Project management, Warehouse management, Manufacturing, Financial management, Human Resources just to name a few. More than 700  openERP modules are available on Launchpad (E-global Malaysia , try it you will know it , it is excellent piece of software but if you do get stuck then you can call us for help , we try our best to help you !)

Modular : OpenERP unique modular approach allows customers to start with one application and to add other modules later on. Customers keep the benefits of an integrated software but avoid a �big bang� project. (E-global Malaysia , yes very modular and you can definitely start small and implement such as CRM solutions and customize your own form , views and reports easily!

Flexible :  OpenERP allows you to customize the user interface and manage your business processes in only a few clicks. ( E-global can absolutely support this as it is very easy to customize your own business processes , workflow and if you do get stuck , we can help you locally)

No Lock-in:  The same version of OpenERP can be used either On-site or Online. We are committed to always allow you customers choose what is best for them. ( E-global ,i think it is true for every open source , if you do not like our services , you can always feel free to engage another vendor to provide you competence services , but as we are determined to maintain our standard of practices , our ERP project implementation methodology , our gained customization experiences for the modules of OpenERP and our desired to improve our knowledge in OpenERP and our passion for technologies , we will try to get ourselves ready to give you quality services all the time.)

Affordable :  The absence of license fees makes OpenERP very affordable. The complete set of service we provide (On line and On-site) provide great value for the customers. We are of the only vendor to guarantee migration services for a fixed fee (  E-global will stay committed and standing behind OpenERP to provide you an affordable , quality , qualify and competence services in Malaysia and Asean countries. )


So interested to stay in touch ? you can go to our facebook !


Suni

E-global OpenERP Link

0 komentar
e-global scm , As a Malaysia Local first silver partner of OpenERP ,

we would like to be easily contacted or get in touched with you , here are some of our link that is totally dedicated in openERP .

Our E-global OpenERP Video blog Channel

Our Development
  1. Launchpad (openerp-malaysia)
  2. SourceForge (OpenERP-Asia)

Our forum
  1. Standard solutions discussion forum
  2. Maintenace based , ticketing support center

Our official site
  1. International site
  2. Malaysia local site
  3. iso29110 site
  4. google apps site
  5. wirednest site , our perfer partner in Hosting solutions
We also socialize using the most popular ...
Facebook so let go there and have some chat ... and status updates...
Suni

How to get to us the official partner of Malaysia

0 komentar
E-global scm , the first Malaysia official silver partner of OpenERP , we are excited about joining one of the best ERP project in the world ,not only  we are going to adopt into our own business but will be providing our local SME an excellence options to implement quality ERP in a cost effective way.

We are not NOT RESELLER BUT DEVELOPER , a fun and dedicated software developer , we don't just resell another off the shelf ERP solutions , but we are competence in implementing the solutions , we have been using OpenERP , since TinyERP 4.x and we implement for a Radiator manufacturer , Chevon International Pte Ltd , where OpenERP are been implemented over in Singapore(HQ) , Malaysia (JB) & KL , it is a full operation , from Customer PO to Sales Order to Procurement to invoice to logictic to Financial , starting from engineering Bill of Materiel (BOM).

Our experiences :
  1. Customize Import utilities to import Siemen's TCX BOM data CSV into OpenERP database.
  2. Customize reports , the core openoffice report engine as well as our own GUI based reporting engine ,using ReportMan.
  3. Customize the Workflow processes , Server processes , Screen layout 
  4. Customize existing Python code
  5. Develop our own Customize modules , account_multy_pay , for exanple , it is used to pay multiple payment and reconciled automatically , or "Apply it/Knock off" our common Malaysian terms in detail invoice apply feature.
Our plan

our plan is to use openERP as a core framework to develop a very powerful and flexible system for local SME , part of our plan of the project for the vertical industries as as follow :
  1. Hotel
  2. Payroll / Human Resources and Time Sheet /attendance
  3. Frieght Forwarding and shipping solutions
  4. Workshop management system
  5. CRM for services industries
We are definately excited about our plan and we look forward to expand and to serve and support our local SME industries to improve or competency and facing the globalization economy.

Please do check back this blog to know the development of the OpenERP in Malaysia and ASEAN !
Suni

How To How Import Mail from outlook to Apple Mail free

0 komentar

How To How Import Mail from outlook to Apple Mail



I searched for this and found many answer but none of them were really useful for me so I tried to identify my own ways. I was able to get some paid tool but I was not willing to pay $49 for that tool so I skipped that method and decided to Use Thunderbird and as expected thunderbird solved my issue.

Before following this tutorial please understand I am in assumption you still have your windows computer intact and all of your mails are there in MS outlook or outlook express.

This procedure will be done in 2 parts half on windows and Half on MAC.

Here is procedure for importing mail from outlook to apple Mail.

1) Install thunderbird on your windows computer.

2) Now open thunderbird and click on tool and select import.

3) It will give you a wizard to import mail.

4) In this wizard it will ask what you want to import don�t get tempted because of import every thing just select Mail and click on next.

5) In next step it will ask from which Mail client you want to import mails.

6) Choose your Mail Client and click on Next.

7) When you will click on next it will start Importing Mails from outlook or outlook express.

8) Once it is done it will create a folder named Outlook.Import.

9) Right click on this folder and go to its properties.

10) It will open a window in which you can get location for this Outlook.import folder.

11) Open this Outlook.import folder and copy all data of this folder in a Flash drive or any preferred Movable media.

12) Now you are done at Windows Machine.

13) Connect your Flash drive in MAC machine.

14) Open Mail in MAC.

15) Go to file in MAC and click on Import Mailboxes.

16) It will give a wizard from where you need to import Mails.

17) Select Thunderbird and Click on continue.

18) It will ask for profile location of thunderbird.

19) Guide it to profile path that you copied in your flash drive and select choose.

20) In next screen it will show you all the folders that were there in your outlook and imported in thunderbird in windows.

21) If you want to remove any folder you can remove that.

22) Now click on Continue and it will start importing mails from thunderbird profile.

23) Once its done it will take some time to get synched properly in MAC Mail so don�t get panic if you find your MAC mail is slow after doing that. It will be done in few minutes depending on size of your Mailbox.

24) Once its done properly you can drag and drop folders at your preferred location from import folder


I hope it was useful for you and solved your problem


Thanks for visiting my blog

AP Dubey
Suni

Operasi Copy Gambar

0 komentar
Oh baru inget ternyata di folder tempat penyimpanan data project java saya ada file ini. wkakakakkaka. ya udah langsung share aza buat temen" yang mau bagaimana cara'ya operasi copy sebuah gambar kemudian menyimpan'ya ke dalam folder yang telah ditentukan sebelumnya. kalo operasi ini file yang di copy akan otomatis si save pada folder "disk". sebenernya bukan gambar aza yang dapat di copy cmn di sini saya praktekan hanya gambar saja. lumayan buat referensi lah. wkwkwkkwkwkw.

Klik Here to Download








Suni

Tawk.to